r2006: debian
[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.17 2002/04/28 11:00:11 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 PKG:=clsql
17 DEBPKG=cl-sql
18 SUBDIRS:=interfaces sql cmucl-compat
19 DOCSUBDIRS:=doc
20
21 include Makefile.common
22
23 .PHONY: all libs clean distclean doc tagcvs dist wwwdist
24
25 LIBSUBDIRS=interfaces/mysql interfaces/clsql-uffi
26 .PHONY: subdirs $(LIBSUBDIRS)
27
28 all: $(LIBSUBDIRS)
29
30 $(LIBSUBDIRS):
31         $(MAKE) -C $@
32
33 distclean: clean
34
35 VERSION=$(shell cat VERSION)
36 DISTDIR=$(PKG)-$(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 clsql-uffi.system \
42         clsql.system clsql-aodbc.system clsql-mysql.system \
43         clsql-postgresql.system clsql-postgresql-socket.system
44
45 VERSION_UNDERSCORE=$(shell cat VERSION | tr . _)
46 TAG=dist_$(VERSION_UNDERSCORE)
47
48 tagcvs:
49         @cvs -q rtag -d $(TAG) $(PKG) > /dev/null
50         @cvs -q tag -F $(TAG) > /dev/null
51
52 dist: distclean tagcvs
53         @$(MAKE) -C doc $@
54         @rm -fr $(DISTDIR) $(DIST_TARBALL) $(DIST_ZIP)
55         @mkdir $(DISTDIR)
56         @cp -a $(SOURCE_FILES) $(DISTDIR)
57         @find $(DISTDIR) -type d -name CVS | xargs rm -r
58         @find $(DISTDIR) -type f -name .cvsignore -exec rm {} \;
59         @find $(DISTDIR) -type f -and -name \*.tex -or -name \*.aux -or \
60                  -name \*.log -or -name \*.out -or -name \*.dvi -or \
61                  -name \*~ -or -name \*.ps -or -name test.config | xargs rm -f
62         @tar czf $(DIST_TARBALL) $(DISTDIR)
63         @find $(DISTDIR) -type f -name \*.cl -or -name \*.list -or \
64                 -name \*.system -or -name Makefile -or -name ChangeLog -or \
65                 -name COPYRIGHT -or -name TODO -or -name README -or -name INSTALL \
66                 -or -name NEWS -or -name \*.sgml -or -name COPYING\* -or -name catalog \
67                 | xargs unix2dos
68         @zip -rq $(DIST_ZIP) $(DISTDIR)
69         @rm -r $(DISTDIR)
70
71 wwwdist: dist
72         @./copy