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."