X-Git-Url: https://jfr.im/git/solanum.git/blobdiff_plain/0c32811863a2d87dc10bc4f3e294ca39f15f3558..c0949eb003bc549055c39e876d0180b49c6fb06a:/Makefile.am diff --git a/Makefile.am b/Makefile.am index e72190fb..c4a49a6d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,7 +1,7 @@ AUTOMAKE_OPTIONS = foreign ACLOCAL_AMFLAGS = -I m4 -SUBDIRS = libratbox +SUBDIRS = librb if BUILD_LTDL SUBDIRS += libltdl @@ -19,5 +19,26 @@ SUBDIRS += ircd \ logdir = @prefix@/logs +BUILT_SOURCES = include/serno.h + +include/serno.h: + @if [ -d .git ]; then \ + revh=`git log -1 --date=format:%Y%m%d --pretty=format:%cd-%h`; \ + datecode=`git log -1 --pretty=format:%ct`; \ + 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 ${logdir} || mkdir -p ${logdir} + test -d ${DESTDIR}${logdir} || mkdir -p ${DESTDIR}${logdir} + +install-exec-hook: + rm -f ${DESTDIR}${moduledir}/*.la + rm -f ${DESTDIR}${moduledir}/autoload/*.la + rm -f ${DESTDIR}${moduledir}/extensions/*.la