]> jfr.im git - solanum.git/blob - Makefile.am
Use Unix time for the date code.
[solanum.git] / Makefile.am
1 AUTOMAKE_OPTIONS = foreign
2 ACLOCAL_AMFLAGS = -I m4
3
4 SUBDIRS = librb
5
6 if BUILD_LTDL
7 SUBDIRS += libltdl
8 endif
9
10 SUBDIRS += ircd \
11 ssld \
12 authd \
13 bandb \
14 tools \
15 modules \
16 extensions \
17 help \
18 doc
19
20 logdir = @prefix@/logs
21
22 BUILT_SOURCES = include/serno.h
23
24 include/serno.h:
25 @if [ -d .git ]; then \
26 revh=`git log -1 --date=format:%Y%m%d --pretty=format:%cd-%h`; \
27 datecode=`git log -1 --pretty=format:%ct`; \
28 if [ -n "$$revh" ]; then \
29 echo '#define SERNO "'$$revh'"' >include/serno.h ; \
30 echo "#define DATECODE $${datecode}UL" >>include/serno.h; \
31 fi \
32 else \
33 echo '#define SERNO "unknown"' >include/serno.h; \
34 echo '#define DATECODE 0UL' >>include/serno.h; \
35 fi
36
37 install-data-hook:
38 test -d ${DESTDIR}${logdir} || mkdir -p ${DESTDIR}${logdir}