r1676: *** empty log message ***
[clsql.git] / Makefile
1 # FILE IDENTIFICATION
2
3 #  Name:         Makefile
4 #  Purpose:      Makefile for the CLSQL package
5 #  Programer:    Kevin M. Rosenberg
6 #  Date Started: Mar 2002
7 #
8 #  CVS Id:   $Id: Makefile,v 1.4 2002/03/27 09:03:47 kevin Exp $
9 #
10 # This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
11 #
12 # CLSQL 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 PACKAGE=clsql
17
18 all: libs
19
20 libs:
21         (cd interfaces/mysql; make)
22         (cd interfaces/clsql-uffi; make)
23
24 clean:
25         @rm -f $(PACKAGE)-*.tar.gz $(PACKAGE)-*.zip
26         @find . -type d -name .bin |xargs rm -rf 
27
28 realclean: clean
29         @find . -type f -name \*~ -exec rm {} \;
30         @find . -type f -name "#*#" -exec rm {} \;
31
32 docs:
33         @(cd doc; make dist-doc)
34
35 VERSION=$(shell cat VERSION)
36 DISTDIR=$(PACKAGE)-$(VERSION)
37 DIST_TARBALL=$(DISTDIR).tar.gz
38 DIST_ZIP=$(DISTDIR).zip
39 SOURCE_FILES=interfaces sql cmucl-compat doc test-suite Makefile VERSION \
40         COPYING.CLSQL COPYING.MaiSQL README INSTALL ChangeLog NEWS TODO \
41         set-logical.cl test-clsql.cl \
42         clsql.system clsql-aodbc.system clsql-mysql.system \
43         clsql-postgresql.system clsql-postgresql-socket.system
44
45 dist: realclean docs
46         @rm -fr $(DISTDIR) $(DIST_TARBALL) $(DIST_ZIP)
47         @mkdir $(DISTDIR)
48         @cp -a $(SOURCE_FILES) $(DISTDIR)
49         @find $(DISTDIR) -type d -name CVS | xargs rm -r
50         @find $(DISTDIR) -type f -name .cvsignore -exec rm {} \;
51         @find $(DISTDIR)/doc -type f -name \*.tex -or -name \*.aux -or \
52                  -name \*.log -or -name \*.out -or -name \*.dvi -or \
53                  -name \*~ -or -name \*.ps -exec rm {} \;
54         @tar czf $(DIST_TARBALL) $(DISTDIR)
55         @find $(DISTDIR) -type f |grep -v .dll$ |grep -v .lib$ |xargs unix2dos -q
56         @zip -rq $(DIST_ZIP) $(DISTDIR)
57         @rm -r $(DISTDIR)