X-Git-Url: https://ginac.de/CLN/cln.git//cln.git?a=blobdiff_plain;f=Makefile.devel;h=74e326d79576d6486868a1b991d2d0fb0bca9352;hb=35751aa2857c2c35de57a51b44cd6028db641199;hp=bbc1484a4b14c34b5275bcc849a534bbc3113be5;hpb=850abfde7f0d985ba01526c346bcd0d733562943;p=cln.git diff --git a/Makefile.devel b/Makefile.devel index bbc1484..74e326d 100644 --- a/Makefile.devel +++ b/Makefile.devel @@ -7,42 +7,56 @@ SHELL = /bin/sh MAKE = make -# GNU tar together with GNU gzip. Excellent performance. +# GNU tar together with GNU bzip2. Slow, but excellent compresion rates. PACK = tar -PACKOPT = cvfhz -PACKEXT = .tar.z +PACKOPT = cvfhj +PACKEXT = .tar.bz2 +EXCLUDE=--exclude CVS\* --exclude \*.o --exclude *.lo --exclude .cvsignore \ + --exclude \*~ --exclude .\#\* --exclude .libs \ + --exclude autogen.sh \ + --exclude ${AUTOCONF_CACHE} -all : configures documentation +all: build-prerequisites documentation +build-prerequisites: configures + CONFIGURES = configure -CONFIGURES_IN = configure.in +CONFIGURES_IN = configure.ac + +AUTOCONF_FILES = autoconf/aclocal.m4 +AUTOCONF_MACROS = ${wildcard m4/*.m4} # originally borrowed from GNU clisp +AUTOCONF = autoconf +AUTOCONF_CACHE = autom4te.cache + +configures: ${CONFIGURES} + +configure: configure.ac ${AUTOCONF_FILES} ${AUTOCONF_MACROS} + ${AUTOCONF} --include=autoconf -I m4 -AUTOCONF_FILES = autoconf/aclocal.m4 autoconf/acgeneral.m4 autoconf/acspecific.m4 +# Release: +SRC_DIST=/tmp/cln-${VER}${PACKEXT} +VER=${shell echo `grep "CL_VERSION " include/cln/version.h |sed 's/^.*CL_VERSION \(.*\)$$/\1/'`} -configures : $(CONFIGURES) +src-distrib: include/cln/version.h force + ${MAKE} -f Makefile.devel src--distrib TOPDIR=cln-${VER} -configure : configure.in $(AUTOCONF_FILES) - ./autoconf/autoconf -m autoconf +src--distrib: clean + ln -s . ${TOPDIR} + ${PACK} ${PACKOPT} ${SRC_DIST} ${EXCLUDE} --exclude ${TOPDIR}/${TOPDIR} ${TOPDIR} + rm -f ${TOPDIR} -# # ACLOCAL = /home/bruno/clisp/src/autoconf/aclocal.m4 -# # ACSELECT = /home/bruno/clisp/src/autoconf/acselect -# # OTHERMACROS = /home/bruno/clisp/src/autoconf/libtool.m4 -# ACLOCAL = /home/kreckel/contrib/src/clisp/src/autoconf/aclocal.m4 -# ACSELECT = /home/kreckel/contrib/src/clisp/src/autoconf/acselect -# OTHERMACROS = /home/kreckel/contrib/src/clisp/src/autoconf/libtool.m4 -# -# autoconf/aclocal.m4 : $(ACLOCAL) -# ($(ACSELECT) `cat $(CONFIGURES_IN) | grep '^[A-Z][A-Z]_' | sed 's,[^A-Z_].*$$,,g' | sort | uniq` < $(ACLOCAL) ; cat $(OTHERMACROS) | sed -e 's,AC_CANONICAL_HOST,CL_CANONICAL_HOST,g' -e 's,AC_PROG_RANLIB,CL_PROG_RANLIB,g') > autoconf/aclocal.m4 +clean: force + test -f Makefile && ${MAKE} distclean -# Syntaxcheck -check-configures : $(CONFIGURES) - set -e; for f in $(CONFIGURES); do bash -x -n $$f; done +# Syntaxcheck: +check-configures: ${CONFIGURES} + set -e; for f in ${CONFIGURES}; do bash -x -n $$f; done -documentation : force - cd doc && $(MAKE) -f Makefile.devel documentation +documentation: force + cd doc && ${MAKE} -f Makefile.devel documentation -force : +force: