--- ermyth/Makefile.in 2007/08/28 17:08:06 1.9 +++ ermyth/Makefile.in 2007/09/22 14:27:25 1.10 @@ -1,10 +1,14 @@ +# Makefile.in: This file contains build instructions. +# # Copyright © 2007 Pippijn van Steenhoven / The Ermyth Team +# Rights to this code are as documented in COPYING. +# +# +# Portions of this file were derived from sources bearing the following license: # Copyright © 2005 Atheme Development Group. # Rights to this code are documented in doc/pod/license.pod. # -# This file contains build instructions. -# -# $Id: Makefile.in,v 1.9 2007/08/28 17:08:06 pippijn Exp $ +# $Id: Makefile.in,v 1.10 2007/09/22 14:27:25 pippijn Exp $ # RM = @RM@ @@ -18,7 +22,7 @@ SRCDIR = . @ABSPATHS@SRCDIR= @SRCDIR@/src -SUBDIRS = modules doc src test +SUBDIRS = modules doc libermyth src #test CLEANDIRS = ${SUBDIRS} po .PHONY: dist test @@ -50,10 +54,10 @@ echo ">>> Built in" $$(expr $$(date +%s) - $$NOW) "seconds" test: .build.stamp - @echo "[build] ==> src" - @${MAKE} ${SILENT} -C src build - @echo "[build] ==> test" - @${MAKE} ${SILENT} -C $@ $@ + @for i in ${SUBDIRS}; do \ + echo "[$@] ==> $$i"; \ + ${MAKE} ${SILENT} -C $$i $@; \ + done clean: .depend.stamp @for i in $(CLEANDIRS); do \ @@ -111,7 +115,7 @@ @${RM} -rf ${DISTNAME} upload: dist - @scp ${DISTNAME}.tar.gz ruth:ermyth.schmorp.de/dist/ + @scp ${DISTNAME}.tar.gz ruth:ermyth.xinutec.org/dist/ @${RM} -f ${DISTNAME}.tar.gz rz-test: dist @@ -121,3 +125,6 @@ calcsize: expr $$(echo `find . -name "*.[Ch]"|xargs ls -l|awk '{print $$5}'` | sed -e 's/ / + /g') + +tags: + ctags -R --c++-kinds=+p --fields=+iaS --extra=+q include