From d1a6c8bd62a7bbdba77094039a234dbcff7f9351 Mon Sep 17 00:00:00 2001 From: Zac Bowling Date: Thu, 13 Jan 2005 11:47:08 +0000 Subject: [PATCH] 2005-01-13 Zac Bowling * gtkdotnet/makefile.win32 : fixed references to build on Win32 svn path=/trunk/gtk-sharp/; revision=38864 --- ChangeLog | 4 ++++ gtkdotnet/makefile.win32 | 6 ++++-- 2 files changed, 8 insertions(+), 2 deletions(-) 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)