r1742: *** 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.31 2002/04/06 19:23:04 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
17 all: nothing
18
19 nothing:
20
21 clean:
22         @rm -f uffi-*.tar.gz uffi-*.zip
23         @find . -type d -name .bin |xargs rm -rf
24
25 realclean: clean
26         @find . -type f -name "#*" -or -name \*~ -exec rm {} \;
27
28 docs:
29         @(cd doc; make dist-doc)
30
31 VERSION=$(shell cat VERSION)
32 DISTDIR=uffi-$(VERSION)
33 DIST_TARBALL=$(DISTDIR).tar.gz
34 DIST_ZIP=$(DISTDIR).zip
35 SOURCE_FILES=src doc examples Makefile uffi.system COPYRIGHT README TODO \
36          INSTALL uffi.lsm ChangeLog NEWS test-examples.cl set-logical.cl \
37          benchmarks VERSION
38
39 dist: realclean docs
40         @rm -rf $(DISTDIR) $(DIST_TARBALL) $(DIST_ZIP)
41         @mkdir $(DISTDIR)
42         @cp -a $(SOURCE_FILES) $(DISTDIR)
43         @find $(DISTDIR) -type d -name CVS |xargs rm -rf
44         @find $(DISTDIR) -type f -name .cvsignore -exec rm {} \;
45         @find $(DISTDIR)/doc -type f -name \*.tex -or -name \*.aux -or \
46                  -name \*.log -or -name \*.out -or -name \*.dvi -or \
47                  -name \*~ -or -name \*.ps -exec rm {} \;
48         @tar czf $(DIST_TARBALL) $(DISTDIR)
49         @find $(DISTDIR) -type f -and -name \*.cl -or -name \*.list -or \
50                 -name \*.system -or -name Makefile -or -name ChangeLog -or \
51                 -name COPYRIGHT -or -name TODO -or -name README -or -name INSTALL \
52                 -or -name NEWS -or -name \*.sgml -or -name COPYING\* -or -name catalog \
53                 | xargs unix2dos -q
54         @zip -rq $(DIST_ZIP) $(DISTDIR)
55         @rm -r $(DISTDIR)
56