2005-01-13 Zac Bowling <zac@zacbowling.com>

* gtkdotnet/makefile.win32 : fixed references to build on Win32

svn path=/trunk/gtk-sharp/; revision=38864
This commit is contained in:
Zac Bowling 2005-01-13 11:47:08 +00:00
parent 50c2fa8c09
commit d1a6c8bd62
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2005-01-13 Zac Bowling <zac@zacbowling.com>
* gtkdotnet/makefile.win32 : fixed references to build on Win32
2005-01-12 Mike Kestner <mkestner@novell.com>
* sample/gnomevfs/Makefile,am : conditionally build.

View File

@ -1,7 +1,9 @@
ASSEMBLY=gtk-dotnet.dll
all: windows
windows:
$(CSC) /unsafe /nowarn:0660,0661 /target:library /out:gtk-dotnet.dll /recurse:*.cs
$(CSC) /unsafe /nowarn:0660,0661 /target:library /r:../glib/glib-sharp.dll /r:../pango/pango-sharp.dll /r:../atk/atk-sharp.dll /r:../gdk/gdk-sharp.dll /r:../gtk/gtk-sharp.dll /out:$(ASSEMBLY) /recurse:*.cs
clean:
rm -f *.dll
rm -f $(ASSEMBLY)