blob: e9b20e607e95f809e8a8c22641bcb41db9a035a5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
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
|