X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=Makefile;h=56a2982092662fec9e368f0549ebf9c740a09c5a;hb=04056dc94146f82930b5723c01455ed359bb7b28;hp=ef5af4da22d34ed311ca898e0f41da941fae1f6b;hpb=3fdee3eb974bf302aa7d7fce542b70073b28d4a9;p=uffi.git diff --git a/Makefile b/Makefile index ef5af4d..56a2982 100644 --- a/Makefile +++ b/Makefile @@ -5,15 +5,12 @@ # Programer: Kevin M. Rosenberg, M.D. # Date Started: Mar 2002 # -# CVS Id: $Id: Makefile,v 1.46 2002/04/28 09:48:08 kevin Exp $ +# CVS Id: $Id$ # -# This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg -# -# 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. +# This file, part of UFFI, is Copyright (c) 2002-2005 by Kevin M. Rosenberg PKG:=uffi +DEBPKG=cl-uffi SUBDIRS:= examples src benchmarks DOCSUBDIRS:=doc @@ -30,22 +27,9 @@ distclean: clean # ./debian/rules clean -VERSION=$(shell cat VERSION) -PKGNAME=$(PKG)-$(VERSION) -DISTDIR=$(PKGNAME) -DIST_TARBALL=$(PKGNAME).tar.gz -DIST_ORIG_TARBALL=$(PKGNAME).orig.tar.gz -DIST_ZIP=$(PKGNAME).zip -SOURCE_FILES=src doc examples Makefile uffi.system benchmarks COPYRIGHT README \ - TODO INSTALL uffi.lsm ChangeLog NEWS test-examples.cl set-logical.cl - -VERSION_UNDERSCORE=$(shell cat VERSION | tr . _) -TAG=upstream_version_$(VERSION_UNDERSCORE) - -.PHONY: tagcvs -tagcvs: - @cvs -q rtag -d $(TAG) $(PKG) > /dev/null - @cvs -q tag -F $(TAG) > /dev/null +SOURCE_FILES=src doc examples Makefile uffi.system uffi.debian.system \ + benchmarks COPYRIGHT README TODO INSTALL ChangeLog NEWS \ + test-examples.cl set-logical.cl .PHONY: doc doc: @@ -54,17 +38,8 @@ doc: .PHONY: dist dist: clean $(MAKE) -C doc $@ - @./make-dist.sh - -.PHONY: wwwdist -wwwdist: dist - @./copy - - -.PHONY: freeze -freeze: - @echo tagging with frozen tag - cvs -q rtag -d frozen uffi - cvs -q tag -F frozen . - +.PHONY: TAGS +TAGS: + if [ -f TAGS ]; then mv -f TAGS TAGS~; fi + find . -name \*.lisp -exec /usr/bin/etags -a \{\} \;