X-Git-Url: https://jfr.im/git/solanum.git/blobdiff_plain/749d697c98e41454ea5fa5ff702870740c454ba5..d09c55338feb5627da978058432a15dccec16907:/Makefile.am diff --git a/Makefile.am b/Makefile.am index 6eb6157b..e41e282d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -9,8 +9,10 @@ endif SUBDIRS += ircd \ ssld \ + wsockd \ authd \ bandb \ + tests \ tools \ modules \ extensions \ @@ -24,15 +26,35 @@ 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 --date=format:%Y%m%d --pretty=format:%cd`; \ + 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 \ - else \ + 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} + +install-exec-hook: + rm -f ${DESTDIR}${moduledir}/*.la + rm -f ${DESTDIR}${moduledir}/autoload/*.la + rm -f ${DESTDIR}${moduledir}/extensions/*.la + 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