mirror of
https://github.com/westonrobot/ugv_sdk
synced 2023-04-08 06:32:14 +08:00
30 lines
549 B
Makefile
30 lines
549 B
Makefile
if !STANDALONE
|
|
EXAMPLES_CPP03 = examples/cpp03
|
|
endif
|
|
|
|
if HAVE_CXX11
|
|
EXAMPLES_CPP11 = examples/cpp11
|
|
endif
|
|
|
|
if HAVE_CXX14
|
|
EXAMPLES_CPP14 = examples/cpp14
|
|
endif
|
|
|
|
if HAVE_CXX17
|
|
EXAMPLES_CPP17 = examples/cpp17
|
|
endif
|
|
|
|
SUBDIRS = $(EXAMPLES_CPP03) $(EXAMPLES_CPP11) $(EXAMPLES_CPP14) $(EXAMPLES_CPP17) tests
|
|
|
|
DIST_SUBDIRS = examples/cpp03 examples/cpp11 examples/cpp14 examples/cpp17 tests
|
|
|
|
EXTRA_DIST = \
|
|
Makefile.mgw \
|
|
Makefile.msc \
|
|
tools/handlerlive.pl \
|
|
tools/handlertree.pl \
|
|
tools/handlerviz.pl
|
|
|
|
MAINTAINERCLEANFILES = \
|
|
$(srcdir)/Makefile.in
|