X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=Makefile;h=3fca75588ae2737cea3a4c6b5a4e81da5ae47a8f;hb=949ecae2e659ee76895debdf3e6b6bf01c7a4e3b;hp=01d6ee9f0a7cac74483d9e11b871e1f8c596cb5e;hpb=a8074fe2035d97f5178c41104dd44c839987c380;p=clsql.git diff --git a/Makefile b/Makefile index 01d6ee9..3fca755 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ # Programer: Kevin M. Rosenberg # Date Started: Mar 2002 # -# CVS Id: $Id: Makefile,v 1.14 2002/04/23 21:32:25 kevin Exp $ +# CVS Id: $Id: Makefile,v 1.16 2002/04/28 10:58:07 kevin Exp $ # # This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg # @@ -13,23 +13,28 @@ # as governed by the terms of the Lisp Lesser GNU Public License # (http://opensource.franz.com/preamble.html), also known as the LLGPL. -PKG=clsql +PKG:=clsql +DEBPKG=cl-sql +SUBDIRS:=interfaces sql cmucl-compat +DOCSUBDIRS:=doc + +include Makefile.common .PHONY: all libs clean distclean doc tagcvs dist wwwdist -SUBDIRS=interfaces/mysql interfaces/clsql-uffi -.PHONY: subdirs $(SUBDIRS) +LIBSUBDIRS=interfaces/mysql interfaces/clsql-uffi +.PHONY: subdirs $(LIBSUBDIRS) -all: $(SUBDIRS) +all: $(LIBSUBDIRS) -$(SUBDIRS): +$(LIBSUBDIRS): $(MAKE) -C $@ clean: @rm -f $(PKG)-*.tar.gz $(PKG)-*.zip @find . -type d -name .bin |xargs rm -rf @find . -type f -name "#*" -or -name \*~ -exec rm {} \; - @for i in $(SUBDIRS) ; do $(MAKE) -C $$i $@ ; done + @for i in $(LIBSUBDIRS) ; do $(MAKE) -C $$i $@ ; done distclean: clean