From a539e697478ddf1d40bc50e2be8f913ee0d73b16 Mon Sep 17 00:00:00 2001 From: Mike Kestner Date: Wed, 22 Jun 2005 21:49:25 +0000 Subject: [PATCH] some makefile win32 lovin svn path=/trunk/gtk-sharp/; revision=46399 --- sample/makefile.win32 | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/sample/makefile.win32 b/sample/makefile.win32 index 255528650..230aff9fe 100644 --- a/sample/makefile.win32 +++ b/sample/makefile.win32 @@ -1,9 +1,13 @@ +references = /r:../glib/glib-sharp.dll /r:../atk/atk-sharp.dll /r:../pango/pango-sharp.dll /r:../gdk/gdk-sharp.dll /r:../gtk/gtk-sharp.dll /r:../glade/glade-sharp.dll + all: windows windows: - $(CSC) /unsafe /out:gtk-hello-world.exe /r:../glib/glib-sharp.dll /r:../atk/atk-sharp.dll /r:../gtk/gtk-sharp.dll /r:../gdk/gdk-sharp.dll HelloWorld.cs - $(CSC) /unsafe /out:button.exe /r:../glib/glib-sharp.dll /r:../atk/atk-sharp.dll /r:../gtk/gtk-sharp.dll ButtonApp.cs - $(CSC) /unsafe /out:menu.exe /r:../glib/glib-sharp.dll /r:../atk/atk-sharp.dll /r:../gtk/gtk-sharp.dll Menu.cs + $(CSC) /unsafe /out:gtk-hello-world.exe $(references) HelloWorld.cs + $(CSC) /unsafe /out:button.exe $(references) ButtonApp.cs + $(CSC) /unsafe /out:menu.exe $(references) Menu.cs + $(CSC) /unsafe /out:glade-test.exe $(references) /resource:test.glade GladeTest.cs + $(CSC) /unsafe /out:glade-viewer.exe $(references) GladeViewer.cs docs: @echo "No docs to make."