forked from knxd/knxd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
42 lines (32 loc) · 971 Bytes
/
Makefile.am
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
40
41
42
AUTOMAKE_OPTIONS=1.9
ACLOCAL_AMFLAGS = -I m4
EXTRA_DIST=SubmittingPatches .gitignore tools/version.sh
CONFIGURE_DEPENDENCIES=debian/changelog
## rebuild when the version changes
BUILDDIRS =
SUBDIRS=. src systemd
DIST_SUBDIRS = $(SUBDIRS)
BUILT_SOURCES=path.h version.h
CLEANFILES=path.h version.h
path.h : Makefile
echo "#define PKGDATADIR \"${pkgdatadir}\"" >$@
echo "#define PKGLIBDIR \"${pkglibdir}\"" >>$@
.PHONY: CHECK
version.h: CHECK
echo "#define REAL_VERSION \"${shell tools/version.sh}\"" >>$@.new
cmp -s $@.new $@ && rm $@.new || mv $@.new $@
.PHONY: help HELP
help HELP:
@echo ""
@echo ""
@echo "in addition to standard targets (all, install, clean, ...)"
@echo "the following make targets may be supported (at this level):"
@echo ""
@echo " make help - print this text"
@echo ""
# update version number
configure: debian/changelog
config.h: configure
test: all
sh tools/test.sh
tools/test_inih tools/test.ini tools/bad*.ini