[csdoc-patches] CVS: csdoc/src/csdoc .cvsignore,1.1,1.2 ChangeLog,1.8,1.9 makefile,1.1,1.2
Status: Planning
Brought to you by:
mastergaurav
|
From: Gaurav V. <mas...@us...> - 2003-02-23 16:13:12
|
Update of /cvsroot/csdoc/csdoc/src/csdoc
In directory sc8-pr-cvs1:/tmp/cvs-serv17551
Modified Files:
.cvsignore ChangeLog makefile
Log Message:
2003-02-23
* .cvsignore : Ignore *.dll, *.exe, mcsdoc
* makefile : Target for dll.
: Renamed binary to "mcsdoc.exe".
Index: .cvsignore
===================================================================
RCS file: /cvsroot/csdoc/csdoc/src/csdoc/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore 19 Feb 2003 05:49:40 -0000 1.1
+++ .cvsignore 23 Feb 2003 16:13:04 -0000 1.2
@@ -1,3 +1,5 @@
+*.exe
+*.dll
compiler.pdb
compiler.exe
compiler.suo
@@ -6,4 +8,4 @@
cs-parser.cs
y.output
*.pdb
-mcs
+mcsdoc
\ No newline at end of file
Index: ChangeLog
===================================================================
RCS file: /cvsroot/csdoc/csdoc/src/csdoc/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog 21 Feb 2003 11:29:55 -0000 1.8
+++ ChangeLog 23 Feb 2003 16:13:04 -0000 1.9
@@ -1,4 +1,10 @@
+2003-02-23 Gaurav Vaish <mastergaurav AT users DOT sf DOT net>
+
+ * .cvsignore : Ignore *.dll, *.exe, mcsdoc
+ * makefile : Target for dll.
+ : Renamed binary to "mcsdoc.exe".
+
2003-02-21 Gaurav Vaish <mastergaurav AT users DOT sf DOT net>
* class.cs, cs-0tokenizer.cs : Added my name as author.
Index: makefile
===================================================================
RCS file: /cvsroot/csdoc/csdoc/src/csdoc/makefile,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- makefile 19 Feb 2003 05:50:12 -0000 1.1
+++ makefile 23 Feb 2003 16:13:05 -0000 1.2
@@ -1,7 +1,8 @@
CSC=csc.exe
CSCFLAGS=/nologo /optimize
-BINARY=csdoc.exe
-VERSION=0.13
+BINARY=mcsdoc.exe
+DLL=mcsdoc.dll
+#VERSION=0.13
COMMON_SOURCES = cs-parser.cs cs-tokenizer.cs tree.cs location.cs
@@ -40,6 +41,11 @@
$(BINARY): cs-parser.cs $(COMPILER_SOURCES)
$(CSC) $(CSCFLAGS) /target:exe /out:$@ $(COMPILER_SOURCES)
+
+dll: $(DLL)
+
+$(DLL): cs-parser.cs $(COMPILER_SOURCES)
+ $(CSC) $(CSCFLAGS) /target:library /out:$@ $(COMPILER_SOURCES)
windows: all
|