[csdoc-patches] csdoc/src makefile,1.2,1.3
Status: Planning
Brought to you by:
mastergaurav
From: <mas...@us...> - 2004-10-06 19:57:41
|
Update of /cvsroot/csdoc/csdoc/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26612 Modified Files: makefile Log Message: makefile: Updated Index: makefile =================================================================== RCS file: /cvsroot/csdoc/csdoc/src/makefile,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** makefile 19 Feb 2003 05:48:39 -0000 1.2 --- makefile 6 Oct 2004 19:57:32 -0000 1.3 *************** *** 1,15 **** ! DIRS=jay nant mcs csdoc INSTALL= /usr/bin/install ! all: linux ! ! # if test x$(OS) = xWindows_NT; then make linux; else make -f makefile.gnu; fi ! ! install: ! if test x$(OS) = xWindows_NT; then make windowsinstall; else make -f makefile.gnu install; fi ! linux: for i in $(DIRS); do \ ! (cd $$i; make linux) || exit 1; \ done --- 1,10 ---- ! DIRS=mcs nant csdoc INSTALL= /usr/bin/install ! all: default ! default: for i in $(DIRS); do \ ! (cd $$i; make) || exit 1; \ done |