forked from lldpd/lldpd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
40 lines (33 loc) · 1.19 KB
/
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
include doxygen.am
ACLOCAL_AMFLAGS = -I m4
SUBDIRS = src/compat src src/daemon src/lib src/client tests osx
EXTRA_DIST = $(DX_CONFIG) include get-version autogen.sh
DIST_SUBDIRS = $(SUBDIRS) libevent
DISTCLEANFILES = ChangeLog
dist_doc_DATA = README.md NEWS CONTRIBUTE.md
doc_DATA = ChangeLog
__force-changelog-generation:
ChangeLog: __force-changelog-generation
$(AM_V_GEN)if test -d $(top_srcdir)/.git; then \
prev=$$(git describe --tags --always --match '[0-9]*' 2> /dev/null) ; \
for tag in $$(git tag | $(EGREP) '^[0-9]+(\.[0-9]+){1,}$$' | sort -rn); do \
if [ x"$$prev" = x ]; then prev=$$tag ; fi ; \
if [ x"$$prev" = x"$$tag" ]; then continue; fi ; \
echo "$$prev [$$(git log $$prev -1 --pretty=format:'%ai')]:" ; \
echo "" ; \
git log --pretty=' - [%h] %s (%an)' $$tag..$$prev ; \
echo "" ; \
prev=$$tag ; \
done > $@ ; \
else \
touch $@ ; \
fi
dist-hook:
echo $(VERSION) > $(distdir)/.dist-version
MOSTLYCLEANFILES = $(DX_CLEANFILES)
# systemd and launchd files are not installed in the prefix, don't
# request them for distcheck
DISTCHECK_CONFIGURE_FLAGS = \
--with-sysusersdir=no \
--with-systemdsystemunitdir=no \
--with-launchddaemonsdir=no