X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=Makefile;h=8fb786565a3e1a084ce20b5290b8ed226ebe62a8;hb=21d0b1a60cd138b710bb1df8c1a9d01ef49ff036;hp=fdbd5ad2f812e04a7b073e163719dd6e67e5553d;hpb=bc5968d54cee0416db7db9ee2c7295489170bccf;p=uffi.git diff --git a/Makefile b/Makefile index fdbd5ad..8fb7865 100644 --- a/Makefile +++ b/Makefile @@ -5,60 +5,79 @@ # Programer: Kevin M. Rosenberg, M.D. # Date Started: Mar 2002 # -# CVS Id: $Id: Makefile,v 1.3 2002/03/09 21:19:31 kevin Exp $ +# CVS Id: $Id: Makefile,v 1.42 2002/04/28 03:52:01 kevin Exp $ # -# Copyright (c) 2002 by Kevin M. Rosenberg +# This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg # -# This file is part of UFFI. -# -# UFFI is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License (version 2) as -# published by the Free Software Foundation. -# -# UFFI is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with UFFI; if not, write to the Free Software Foundation, Inc., -# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - -all: nothing - -nothing: - -clean: - @rm -f uffi-*.tar.gz uffi-*.zip - @find . -type f -name \*.fasl -exec rm {} \; - @find . -type f -name \*.fsl -exec rm {} \; - @find . -type d -name .bin |xargs rm -rf - -realclean: clean - @find . -type f -name \*~ -exec rm {} \; - @find . -type f -name "#*#" -exec rm {} \; - -docs: - @(cd doc; make dist-doc) - -VERSION=0.1.2 -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 - -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} +# UFFI users are granted the rights to distribute and use this software +# 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 +SUBDIRS:= examples src +DOCSUBDIRS:=doc + +include Makefile.common + + +.PHONY: all +all: + + +.PHONY: distclean +distclean: clean +# ./debian/rules clean + + +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) + +.PHONY: tagcvs +tagcvs: + @cvs -q rtag -d $(TAG) $(PKG) > /dev/null + @cvs -q tag -F $(TAG) > /dev/null + +.PHONY: doc +doc: + $(MAKE) -C doc + +.PHONY: dist +dist: distclean + $(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 + @rm -rf $(DISTDIR)/debian + @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 + @zip -rq $(DIST_ZIP) $(DISTDIR) + @rm -r $(DISTDIR) + +.PHONY: wwwdist +wwwdist: dist + @./copy + + +.PHONY: freeze +freeze: + @echo tagging with frozen tag + cvs -q rtag -d frozen uffi + cvs -q tag -F frozen . + +