bcaa204500
* makefile.win32 : new "gac" target for automatic for gacutil calls, added copying of gtk-sharp.snk to each folder being built to fix fresh builds and after cleaning, added support for switching C# compilers, and added handling of spaces in filenames for mcs builds * gtkdotnet/makefile.win32 : add one more reference to fix mcs builds. svn path=/trunk/gtk-sharp/; revision=38893
9 lines
304 B
Text
9 lines
304 B
Text
ASSEMBLY=gtk-dotnet.dll
|
|
|
|
all: windows
|
|
|
|
windows:
|
|
$(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 /r:System.Drawing.dll /out:$(ASSEMBLY) /recurse:*.cs
|
|
|
|
clean:
|
|
rm -f $(ASSEMBLY)
|