Skip to content
This repository has been archived by the owner on Feb 8, 2018. It is now read-only.

Commit

Permalink
- Got it wrong, it's supposed to be all '-' instead of '/'
Browse files Browse the repository at this point in the history
svn path=/trunk/winforms/; revision=44784
  • Loading branch information
Peter Dennis Bartok committed May 20, 2005
1 parent 2cf1b2f commit 47fd704
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 24 deletions.
36 changes: 18 additions & 18 deletions forms/Makefile
@@ -1,34 +1,34 @@
all: FormsTest.exe FormsMdi.exe FormsHello.exe CustomControl.exe ImageViewer.exe radiobuttons.exe

FormsTest.exe: FormsTest.cs
mcs FormsTest.cs /debug \
/resource:FormsTest.dotgnu.ico \
/resource:FormsTest.small_folder.ico \
/resource:FormsTest.small_text.ico \
/resource:FormsTest.test.ico \
/resource:FormsTest.test\ 15bpp.bmp \
/resource:FormsTest.test\ 16bpp.bmp \
/resource:FormsTest.test\ 1bpp.bmp \
/resource:FormsTest.test\ 4bpp.bmp \
/resource:FormsTest.test\ 8bpp.bmp \
/resource:FormsTest.test.bmp \
/r:System.Windows.Forms.dll \
/r:System.Drawing.dll
mcs FormsTest.cs -debug \
-resource:FormsTest.dotgnu.ico \
-resource:FormsTest.small_folder.ico \
-resource:FormsTest.small_text.ico \
-resource:FormsTest.test.ico \
-resource:FormsTest.test\ 15bpp.bmp \
-resource:FormsTest.test\ 16bpp.bmp \
-resource:FormsTest.test\ 1bpp.bmp \
-resource:FormsTest.test\ 4bpp.bmp \
-resource:FormsTest.test\ 8bpp.bmp \
-resource:FormsTest.test.bmp \
-r:System.Windows.Forms.dll \
-r:System.Drawing.dll

FormsMdi.exe: FormsMdi.cs
mcs FormsMdi.cs /debug /r:System.Windows.Forms.dll /r:System.Drawing.dll
mcs FormsMdi.cs -debug -r:System.Windows.Forms.dll -r:System.Drawing.dll

FormsHello.exe: FormsHello.cs
mcs FormsHello.cs /debug /r:System.Windows.Forms.dll /r:System.Drawing.dll
mcs FormsHello.cs -debug -r:System.Windows.Forms.dll -r:System.Drawing.dll

CustomControl.exe: CustomControl.cs
mcs CustomControl.cs /debug /r:System.Windows.Forms.dll /r:System.Drawing.dll
mcs CustomControl.cs -debug -r:System.Windows.Forms.dll -r:System.Drawing.dll

ImageViewer.exe: ImageViewer.cs
mcs ImageViewer.cs /debug /r:System.Windows.Forms.dll /r:System.Drawing.dll
mcs ImageViewer.cs -debug -r:System.Windows.Forms.dll -r:System.Drawing.dll

radiobuttons.exe: radiobuttons.cs
mcs radiobuttons.cs /debug /r:System.Windows.Forms.dll /r:System.Drawing.dll
mcs radiobuttons.cs -debug -r:System.Windows.Forms.dll -r:System.Drawing.dll

clean:
rm -f FormsTest.exe
Expand Down
12 changes: 6 additions & 6 deletions forms/make-csc.bat
@@ -1,6 +1,6 @@
csc FormsTest.cs /resource:FormsTest.dotgnu.ico /resource:FormsTest.small_folder.ico /resource:FormsTest.small_text.ico /resource:FormsTest.test.ico /resource:"FormsTest.test 15bpp.bmp" /resource:"FormsTest.test 16bpp.bmp" /resource:"FormsTest.test 1bpp.bmp" /resource:"FormsTest.test 4bpp.bmp" /resource:"FormsTest.test 8bpp.bmp" /resource:FormsTest.test.bmp /r:System.Windows.Forms.dll /r:System.Drawing.dll
csc FormsMdi.cs /r:System.Windows.Forms.dll /r:System.Drawing.dll
csc FormsHello.cs /r:System.Windows.Forms.dll /r:System.Drawing.dll
csc CustomControl.cs /r:System.Windows.Forms.dll /r:System.Drawing
csc ImageViewer.cs /r:System.Windows.Forms.dll /r:System.Drawing.dll
csc radiobuttons.cs /r:System.Windows.Forms.dll /r:System.Drawing.dll
csc FormsTest.cs -resource:FormsTest.dotgnu.ico -resource:FormsTest.small_folder.ico -resource:FormsTest.small_text.ico -resource:FormsTest.test.ico -resource:"FormsTest.test 15bpp.bmp" -resource:"FormsTest.test 16bpp.bmp" -resource:"FormsTest.test 1bpp.bmp" -resource:"FormsTest.test 4bpp.bmp" -resource:"FormsTest.test 8bpp.bmp" -resource:FormsTest.test.bmp -r:System.Windows.Forms.dll -r:System.Drawing.dll
csc FormsMdi.cs -r:System.Windows.Forms.dll -r:System.Drawing.dll
csc FormsHello.cs -r:System.Windows.Forms.dll -r:System.Drawing.dll
csc CustomControl.cs -r:System.Windows.Forms.dll -r:System.Drawing
csc ImageViewer.cs -r:System.Windows.Forms.dll -r:System.Drawing.dll
csc radiobuttons.cs -r:System.Windows.Forms.dll -r:System.Drawing.dll

0 comments on commit 47fd704

Please sign in to comment.