blob: 587bb4935e8dd98d86e6bff8b545913d33f5d8cf (
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
30
31
32
33
34
35
36
37
38
39
|
if HAVE_CXX11
EXAMPLES_CPP11 = examples/cpp11
endif
if HAVE_CXX14
EXAMPLES_CPP14 = examples/cpp14
endif
if HAVE_CXX17
EXAMPLES_CPP17 = examples/cpp17
endif
if HAVE_CXX20
EXAMPLES_CPP20 = examples/cpp20
endif
SUBDIRS = \
$(EXAMPLES_CPP11) \
$(EXAMPLES_CPP14) \
$(EXAMPLES_CPP17) \
$(EXAMPLES_CPP20) \
tests
DIST_SUBDIRS = \
examples/cpp11 \
examples/cpp14 \
examples/cpp17 \
examples/cpp20 \
tests
EXTRA_DIST = \
Makefile.mgw \
Makefile.msc \
tools/handlerlive.pl \
tools/handlertree.pl \
tools/handlerviz.pl
MAINTAINERCLEANFILES = \
$(srcdir)/Makefile.in
|