aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.am
blob: 99444f6c8dfd4cf6bbd93117f1ed170a4a5ee02f (about) (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
AUTOMAKE_OPTIONS = foreign
ACLOCAL_AMFLAGS = -I m4

SUBDIRS = librb

if BUILD_LTDL
SUBDIRS += libltdl
endif

SUBDIRS += ircd \
           ssld \
           authd \
           bandb \
           tests \
           tools \
           modules \
           extensions \
           help \
           doc

BUILT_SOURCES = include/serno.h

include/serno.h:
	@if [ -d .git ]; then \
		revh=`git rev-list -1 --no-commit-header --date=format:%Y%m%d --format=%cd-%h HEAD`; \
		datecode=`git rev-list -1 --no-commit-header --format=%ct HEAD`; \
		if [ -n "$$revh" ]; then \
			echo '#define SERNO "'$$revh'"' >include/serno.h ; \
			echo "#define DATECODE $${datecode}UL" >>include/serno.h; \
		fi \
	fi
	@if [ ! -f include/serno.h ]; then \
		echo '#define SERNO "unknown"' >include/serno.h; \
		echo '#define DATECODE 0UL' >>include/serno.h; \
	fi

install-data-hook:
	test -d ${DESTDIR}${logdir} || mkdir -p ${DESTDIR}${logdir}
	@# needed for FHS paths:
	test -d ${DESTDIR}${pkglocalstatedir} || mkdir -p ${DESTDIR}${pkglocalstatedir}

install-exec-hook:
	rm -f ${DESTDIR}${libdir}/*.la
	rm -f ${DESTDIR}${moduledir}/*.la
	rm -f ${DESTDIR}${moduledir}/autoload/*.la
	rm -f ${DESTDIR}${moduledir}/extensions/*.la
	rm -f ${DESTDIR}${libdir}/*.dll.a
	rm -f ${DESTDIR}${moduledir}/*.dll.a
	rm -f ${DESTDIR}${moduledir}/autoload/*.dll.a
	rm -f ${DESTDIR}${moduledir}/extensions/*.dll.a

distclean-local:
	rm -f librb/include/librb-config.h

clean-local:
	rm -f include/serno.h
	rm -f ircd/ircd_lexer.c
	rm -f ircd/ircd_parser.c
	rm -f ircd/ircd_parser.h
	rm -f ircd/version.c
	rm -f ircd/version.c.last