2016-01-06 04:20:25 +01:00
|
|
|
AUTOMAKE_OPTIONS = foreign
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
|
|
|
|
SUBDIRS = libratbox
|
|
|
|
|
|
|
|
if BUILD_LTDL
|
|
|
|
SUBDIRS += libltdl
|
|
|
|
endif
|
|
|
|
|
2016-01-06 08:16:08 +01:00
|
|
|
SUBDIRS += ircd \
|
2016-01-06 04:20:25 +01:00
|
|
|
ssld \
|
2016-01-06 11:11:21 +01:00
|
|
|
authd \
|
2016-01-06 04:20:25 +01:00
|
|
|
bandb \
|
|
|
|
tools \
|
|
|
|
modules \
|
|
|
|
extensions \
|
|
|
|
help \
|
|
|
|
doc
|
|
|
|
|
|
|
|
logdir = @prefix@/logs
|
|
|
|
|
2016-01-06 11:27:32 +01:00
|
|
|
BUILT_SOURCES = include/serno.h
|
|
|
|
|
|
|
|
include/serno.h:
|
|
|
|
@if [ -d .git ] ; then \
|
|
|
|
revh=`git log -1 --date=short --pretty=format:%cd_%h 2>/dev/null | sed -e s/-//g -e s/_/-/`;\
|
|
|
|
[ -z "$$revh" ] || echo '#define SERNO "'$$revh'"' >include/serno.h ; \
|
|
|
|
elif [ -d .hg ] ; then \
|
|
|
|
revh=`hg parents --template '{date|shortdate}_{node|short}' 2>/dev/null | sed -e s/-//g -e s/_/-/`;\
|
|
|
|
[ -z "$$revh" ] || echo '#define SERNO "'$$revh'"' >include/serno.h ; \
|
|
|
|
fi
|
|
|
|
@[ -f include/serno.h ] || echo '#define SERNO "unknown"' >include/serno.h
|
|
|
|
|
2016-01-06 04:20:25 +01:00
|
|
|
install-data-hook:
|
|
|
|
test -d ${logdir} || mkdir -p ${logdir}
|