X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=Makefile;h=3c1d5a983ee991aa8643441a182a46333fb50dec;hb=b4f641e256405778029888b10727095ce35055e0;hp=7e77ef85e2f9b2f06ccdffdc25ae63cd1b3af7b6;hpb=88303e6ff41e146c3774778fd39e0b288e468263;p=clsql.git diff --git a/Makefile b/Makefile index 7e77ef8..3c1d5a9 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ # Programer: Kevin M. Rosenberg # Date Started: Mar 2002 # -# CVS Id: $Id: Makefile,v 1.2 2002/03/23 14:19:35 kevin Exp $ +# CVS Id: $Id: Makefile,v 1.6 2002/04/06 19:54:14 kevin Exp $ # # This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg # @@ -15,13 +15,16 @@ PACKAGE=clsql -all: nothing +all: libs -nothing: +libs: + (cd interfaces/mysql; make) + (cd interfaces/clsql-uffi; make) clean: @rm -f $(PACKAGE)-*.tar.gz $(PACKAGE)-*.zip @find . -type d -name .bin |xargs rm -rf + @find . -type f -name \*.a -or -name \*.so |xargs rm -rf realclean: clean @find . -type f -name \*~ -exec rm {} \; @@ -34,9 +37,9 @@ VERSION=$(shell cat VERSION) DISTDIR=$(PACKAGE)-$(VERSION) DIST_TARBALL=$(DISTDIR).tar.gz DIST_ZIP=$(DISTDIR).zip -SOURCE_FILES=interfaces sql cmucl-compat doc Makefile VERSION \ +SOURCE_FILES=interfaces sql cmucl-compat doc test-suite Makefile VERSION \ COPYING.CLSQL COPYING.MaiSQL README INSTALL ChangeLog NEWS TODO \ - set-logical.cl test-clsql.cl \ + set-logical.cl clsql-uffi.system \ clsql.system clsql-aodbc.system clsql-mysql.system \ clsql-postgresql.system clsql-postgresql-socket.system @@ -46,10 +49,14 @@ dist: realclean docs @cp -a $(SOURCE_FILES) $(DISTDIR) @find $(DISTDIR) -type d -name CVS | xargs rm -r @find $(DISTDIR) -type f -name .cvsignore -exec rm {} \; - @find $(DISTDIR)/doc -type f -name \*.tex -or -name \*.aux -or \ + @find $(DISTDIR) -type f -and -name \*.tex -or -name \*.aux -or \ -name \*.log -or -name \*.out -or -name \*.dvi -or \ - -name \*~ -or -name \*.ps -exec rm {} \; + -name \*~ -or -name \*.ps -or -name test.config | xargs rm -f @tar czf $(DIST_TARBALL) $(DISTDIR) - @find $(DISTDIR) -type f |grep -v .dll$ |grep -v .lib$ |xargs unix2dos -q + @find $(DISTDIR) -type f -name \*.cl -or -name \*.list -or \ + -name \*.system -or -name Makefile -or -name ChangeLog -or \ + -name COPYRIGHT -or -name TODO -or -name README -or -name INSTALL \ + -or -name NEWS -or -name \*.sgml -or -name COPYING\* -or -name catalog \ + | xargs unix2dos -q @zip -rq $(DIST_ZIP) $(DISTDIR) @rm -r $(DISTDIR)