[Pdatabase-cvs] pdb Makefile,1.5,1.6
Brought to you by:
paralizer
|
From: Michael L. <par...@us...> - 2005-03-03 20:52:47
|
Update of /cvsroot/pdatabase/pdb In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10710 Modified Files: Makefile Log Message: Using new makefiles. Index: Makefile =================================================================== RCS file: /cvsroot/pdatabase/pdb/Makefile,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- Makefile 13 Feb 2005 19:20:55 -0000 1.5 +++ Makefile 3 Mar 2005 20:52:12 -0000 1.6 @@ -4,14 +4,20 @@ # # This Makefile will invoke the Makefile in # the src/ subdirectory. +# +# $Header$ BIN = pdb +DBIN = pdb-debug all: $(BIN) +debug: $(DBIN) $(BIN): - cd src && make + cd src/ && $(MAKE) -clean: - cd src && make clean +$(DBIN): + cd src/ && $(MAKE) debug +clean: + cd src/ && $(MAKE) clean |