diff --git a/ChangeLog b/ChangeLog index 9083473fd..e3c437462 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2005-01-13 Zac Bowling + + * gtkdotnet/makefile.win32 : fixed references to build on Win32 + 2005-01-12 Mike Kestner * sample/gnomevfs/Makefile,am : conditionally build. diff --git a/gtkdotnet/makefile.win32 b/gtkdotnet/makefile.win32 index e4be0d482..b969649f5 100644 --- a/gtkdotnet/makefile.win32 +++ b/gtkdotnet/makefile.win32 @@ -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)