X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=Makefile;h=c7a1087d2a94c8b00683c532b192b3f0b3867b92;hb=f8c0f2b6864d57435e6701fe4682aae50ca83467;hp=d773bc2fb83a385b81bfbeea7a13d59bfd92bf16;hpb=1b73caa48686db967e590ebbcdbb39d11417dcf1;p=uffi.git diff --git a/Makefile b/Makefile index d773bc2..c7a1087 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ # Programer: Kevin M. Rosenberg, M.D. # Date Started: Mar 2002 # -# CVS Id: $Id: Makefile,v 1.13 2002/03/14 21:27:00 kevin Exp $ +# CVS Id: $Id: Makefile,v 1.37 2002/04/07 09:17:51 kevin Exp $ # # This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg # @@ -13,42 +13,55 @@ # as governed by the terms of the Lisp Lesser GNU Public License # (http://opensource.franz.com/preamble.html), also known as the LLGPL. +PKG=uffi -all: nothing +.PHONY: all clean realclean tagcvs dist wwwdist -nothing: +all: clean: - @rm -f uffi-*.tar.gz uffi-*.zip - @find . -type f -name \*.fasl -exec rm {} \; - @find . -type f -name \*.fsl -exec rm {} \; + @rm -f $(PKG)-*.tar.gz $(PKG)-*.zip @find . -type d -name .bin |xargs rm -rf + @find . -type f -name \*.a -or -name \*.so |xargs rm -rf + @find . -type f -name "#*" -or -name \*~ -exec rm {} \; + @$(MAKE) -C doc $@ -realclean: clean - @find . -type f -name \*~ -exec rm {} \; - @find . -type f -name "#*#" -exec rm {} \; - -docs: - @(cd doc; make dist-doc) - -VERSION=0.2.4 -DISTDIR=uffi-${VERSION} -DIST_TARBALL=${DISTDIR}.tar.gz -DIST_ZIP=${DISTDIR}.zip -SOURCE_FILES=src doc examples Makefile COPYING COPYRIGHT README \ - INSTALL uffi.lsm ChangeLog NEWS test-examples.cl set-logical.cl - -dist: realclean docs - @rm -fr ${DISTDIR} ${DIST_TARBALL} ${DIST_ZIP} - @mkdir ${DISTDIR} - @cp -a ${SOURCE_FILES} ${DISTDIR} - @find ${DISTDIR} -type d -name CVS |xargs rm -rf - @tar czf ${DIST_TARBALL} ${DISTDIR} - @find ${DISTDIR} -type f -exec unix2dos -q {} \; - @zip -rq ${DIST_ZIP} ${DISTDIR} - @rm -r ${DISTDIR} - -FTP_DIR=/home/ftp/pub/uffi - -dist-to-ftp: dist - @cp ${DIST_TARBALL} ${DIST_ZIP} ${FTP_DIR} +distclean: clean + @$(MAKE) -C doc $@ + + +VERSION=$(shell cat VERSION) +DISTDIR=$(PKG)-$(VERSION) +DIST_TARBALL=$(DISTDIR).tar.gz +DIST_ZIP=$(DISTDIR).zip +SOURCE_FILES=src doc examples Makefile uffi.system COPYRIGHT README TODO \ + INSTALL uffi.lsm ChangeLog NEWS test-examples.cl set-logical.cl \ + +VERSION_UNDERSCORE=$(shell cat VERSION | tr . _) +TAG=dist_$(VERSION_UNDERSCORE) + +tagcvs: + cvs -q rtag -d $(TAG) $(PKG) > /dev/null + cvs -q tag -F $(TAG) > /dev/null + +dist: distclean tagcvs + $(MAKE) -C doc $@ + @rm -rf $(DISTDIR) $(DIST_TARBALL) $(DIST_ZIP) + @mkdir $(DISTDIR) + @cp -a $(SOURCE_FILES) $(DISTDIR) + @find $(DISTDIR) -type d -name CVS |xargs rm -rf + @find $(DISTDIR) -type f -name .cvsignore -exec rm {} \; + @find $(DISTDIR)/doc -type f -name \*.tex -or -name \*.aux -or \ + -name \*.log -or -name \*.out -or -name \*.dvi -or \ + -name \*~ -or -name \*.ps -exec rm {} \; + @tar czf $(DIST_TARBALL) $(DISTDIR) + @find $(DISTDIR) -type f -and -name \*.cl -or -name \*.list -or \ + -name \*.system -or -name Makefile -or -name ChangeLog -or \ + -name COPYRIGHT -or -name TODO -or -name README -or -name INSTALL \ + -or -name NEWS -or -name \*.sgml -or -name COPYING\* -or -name catalog \ + | xargs unix2dos -q + @zip -rq $(DIST_ZIP) $(DISTDIR) + @rm -r $(DISTDIR) + +wwwdist: dist + ./copy