r1758: *** 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.34 2002/04/07 08:09:17 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
18 .PHONY: all clean realclean doc tagcvs dist
19
20 all: 
21
22 clean:
23         @rm -f $(PKG)-*.tar.gz $(PKG)-*.zip
24         @find . -type d -name .bin |xargs rm -rf 
25         @find . -type f -name \*.a -or -name \*.so |xargs rm -rf 
26         $(MAKE) -C doc clean
27
28 realclean: clean
29         @find . -type f -name "#*" -or -name \*~ -exec rm {} \;
30
31 doc:
32         $(MAKE) -C doc dist-doc
33
34 VERSION=$(shell cat VERSION)
35 DISTDIR=$(PKG)-$(VERSION)
36 DIST_TARBALL=$(DISTDIR).tar.gz
37 DIST_ZIP=$(DISTDIR).zip
38 SOURCE_FILES=src doc examples Makefile uffi.system COPYRIGHT README TODO \
39          INSTALL uffi.lsm ChangeLog NEWS test-examples.cl set-logical.cl \
40
41 VERSION_UNDERSCORE=$(shell cat VERSION | tr . _)
42 TAG=dist_$(VERSION_UNDERSCORE)
43
44 tagcvs:
45         cvs -q rtag -d $(TAG) $(PKG)
46         cvs -q tag -F $(TAG)
47
48 dist: realclean docs tagcvs
49         @rm -rf $(DISTDIR) $(DIST_TARBALL) $(DIST_ZIP)
50         @mkdir $(DISTDIR)
51         @cp -a $(SOURCE_FILES) $(DISTDIR)
52         @find $(DISTDIR) -type d -name CVS |xargs rm -rf
53         @find $(DISTDIR) -type f -name .cvsignore -exec rm {} \;
54         @find $(DISTDIR)/doc -type f -name \*.tex -or -name \*.aux -or \
55                  -name \*.log -or -name \*.out -or -name \*.dvi -or \
56                  -name \*~ -or -name \*.ps -exec rm {} \;
57         @tar czf $(DIST_TARBALL) $(DISTDIR)
58         @find $(DISTDIR) -type f -and -name \*.cl -or -name \*.list -or \
59                 -name \*.system -or -name Makefile -or -name ChangeLog -or \
60                 -name COPYRIGHT -or -name TODO -or -name README -or -name INSTALL \
61                 -or -name NEWS -or -name \*.sgml -or -name COPYING\* -or -name catalog \
62                 | xargs unix2dos -q
63         @zip -rq $(DIST_ZIP) $(DISTDIR)
64         @rm -r $(DISTDIR)
65