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
|
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
|
-
+
-
+
-
-
+
+
-
|
include extra.mk
SUBDIRS = src utils tests new_tests
SUBDIRS = src utils tests
DISTCLEAN = Info.plist \
aclocal.m4 \
autom4te.cache \
buildsys.mk \
config.h \
config.log \
config.status \
extra.mk
include buildsys.mk
.PHONY: check docs release
utils tests new_tests: src
utils tests: src
check: tests new_tests
cd tests && ${MAKE} -s run
check: tests
${MAKE} -C tests -s run
cd new_tests && ${MAKE} -s run
docs:
rm -fr docs
doxygen >/dev/null
release: docs
echo "Generating tarball for version ${PACKAGE_VERSION}..."
|