r1806: *** empty log message ***
[uffi.git] / Makefile
1 # FILE IDENTIFICATION
2
3 #  Name:         Makefile
4 #  Purpose:      Makefile for the uffi package
5 #  Programer:    Kevin M. Rosenberg, M.D.
6 #  Date Started: Mar 2002
7 #
8 #  CVS Id:   $Id: Makefile,v 1.40 2002/04/28 02:20:13 kevin Exp $
9 #
10 # This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg
11 #
12 # UFFI users are granted the rights to distribute and use this software
13 # as governed by the terms of the Lisp Lesser GNU Public License
14 # (http://opensource.franz.com/preamble.html), also known as the LLGPL.
15
16 PKG:=uffi
17 SUBDIRS:= examples src
18 DOCSUBDIRS:=doc
19
20 include Makefile.common
21
22
23 .PHONY: all
24 all: 
25
26
27 .PHONY: distclean
28 distclean: clean
29         ./debian/rules clean
30
31
32 VERSION=$(shell cat VERSION)
33 DISTDIR=$(PKG)-$(VERSION)
34 DIST_TARBALL=$(DISTDIR).tar.gz
35 DIST_ZIP=$(DISTDIR).zip
36 SOURCE_FILES=src doc examples Makefile uffi.system COPYRIGHT README TODO \
37          INSTALL uffi.lsm ChangeLog NEWS test-examples.cl set-logical.cl \
38
39 VERSION_UNDERSCORE=$(shell cat VERSION | tr . _)
40 TAG=dist_$(VERSION_UNDERSCORE)
41
42 .PHONY: tagcvs
43 tagcvs:
44         @cvs -q rtag -d $(TAG) $(PKG) > /dev/null
45         @cvs -q tag -F $(TAG) > /dev/null
46
47 .PHONY: dist
48 dist: distclean
49         $(MAKE) -C doc $@
50         @rm -rf $(DISTDIR) $(DIST_TARBALL) $(DIST_ZIP)
51         @mkdir $(DISTDIR)
52         @cp -a $(SOURCE_FILES) $(DISTDIR)
53         @find $(DISTDIR) -type d -name CVS |xargs rm -rf
54         @find $(DISTDIR) -type f -name .cvsignore -exec rm {} \;
55         @find $(DISTDIR)/doc -type f -name \*.tex -or -name \*.aux -or \
56                  -name \*.log -or -name \*.out -or -name \*.dvi -or \
57                  -name \*~ -or -name \*.ps -exec rm {} \;
58         @tar czf $(DIST_TARBALL) $(DISTDIR)
59         @find $(DISTDIR) -type f -and -name \*.cl -or -name \*.list -or \
60                 -name \*.system -or -name Makefile -or -name ChangeLog -or \
61                 -name COPYRIGHT -or -name TODO -or -name README -or -name INSTALL \
62                 -or -name NEWS -or -name \*.sgml -or -name COPYING\* -or -name catalog \
63                 | xargs unix2dos
64         @zip -rq $(DIST_ZIP) $(DISTDIR)
65         @rm -r $(DISTDIR)
66
67 .PHONY: wwwdist
68 wwwdist: dist
69         @./copy
70
71
72 .PHONY: freeze
73 freeze:
74         @echo tagging with frozen tag
75         cvs -q rtag -d frozen uffi
76         cvs -q tag -F frozen .
77
78