mirror of
https://github.com/deneraraujo/OpenVPNAdapter.git
synced 2026-02-11 00:00:08 +08:00
24 lines
430 B
Makefile
24 lines
430 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
|
|
|
|
SUBDIRS = $(EXAMPLES_CPP03) $(EXAMPLES_CPP11) $(EXAMPLES_CPP14) tests
|
|
|
|
DIST_SUBDIRS = examples/cpp03 examples/cpp11 examples/cpp14 examples/cpp17 tests
|
|
|
|
EXTRA_DIST = \
|
|
Makefile.mgw \
|
|
Makefile.msc \
|
|
tools/handlerviz.pl
|
|
|
|
MAINTAINERCLEANFILES = \
|
|
$(srcdir)/Makefile.in
|