[Csmail-patches] CVS: csmail/src makefile,1.4,1.5
Status: Pre-Alpha
Brought to you by:
mastergaurav
From: Gaurav V. <mas...@us...> - 2002-09-09 06:24:00
|
Update of /cvsroot/csmail/csmail/src In directory usw-pr-cvs1:/tmp/cvs-serv3091/src Modified Files: makefile Log Message: 2002-09-09 * src/makfile: Making "doc" in new style. * src/CSMail.Utils/Properties.cs: Partial documentation. Index: makefile =================================================================== RCS file: /cvsroot/csmail/csmail/src/makefile,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- makefile 4 Sep 2002 06:31:14 -0000 1.4 +++ makefile 9 Sep 2002 06:23:58 -0000 1.5 @@ -4,6 +4,8 @@ CSC = csc.exe /nologo NOWARN = /nowarn:1591 TLIB = /target:library +DOC = /doc:../lib/CSMail.xml +OUT = /out:../lib/CSMail.dll all: lib @@ -15,7 +17,8 @@ @$(NANT) -buildfile:$(BUILD_FILE) build doc: - $(CSC) $(NOWARN) $(TLIB) /out:../lib/CSMail.dll /doc:../lib/CSMail.xml CSMail\\*.cs CSMail.Utils\\*.cs + $(CSC) $(NOWARN) $(TLIB) $(OUT) $(DOC) CSMail\\*.cs CSMail.Utils\\*.cs + # @$(NANT) -buildfile:$(BUILD_FILE) doc |