2002-06-21 Michael Meeks <michael@ximian.com>

* sample/Makefile.in: re-factor slightly.

svn path=/trunk/gtk-sharp/; revision=5404
This commit is contained in:
Mike Kestner 2002-06-21 20:58:07 +00:00
parent 5c8fc4ab57
commit ded1103f83
2 changed files with 11 additions and 3 deletions

View file

@ -1,3 +1,7 @@
2002-06-21 Michael Meeks <michael@ximian.com>
* sample/Makefile.in: re-factor slightly.
2002-06-21 Mike Kestner <mkestner@speakeasy.net> 2002-06-21 Mike Kestner <mkestner@speakeasy.net>
* gtk/*akefile* : lose the gdk-imaging-sharp refs * gtk/*akefile* : lose the gdk-imaging-sharp refs

View file

@ -1,5 +1,9 @@
MCS=mcs MCS=mcs
local_paths=-L ../glib -L ../pango -L ../atk -L ../gdk -L ../gtk
all_assemblies=-r glib-sharp -r pango-sharp -r atk-sharp -r gdk-sharp -r gtk-sharp -r System.Drawing
all: linux all: linux
windows: windows:
@ -9,13 +13,13 @@ windows:
linux: gtk-hello-world.exe button.exe menu.exe linux: gtk-hello-world.exe button.exe menu.exe
gtk-hello-world.exe: HelloWorld.cs gtk-hello-world.exe: HelloWorld.cs
$(MCS) --unsafe -o gtk-hello-world.exe -L ../glib -L ../pango -L ../atk -L ../gdk -L ../gtk -r glib-sharp -r pango-sharp -r atk-sharp -r gdk-sharp -r gtk-sharp HelloWorld.cs $(MCS) --unsafe -o gtk-hello-world.exe $(local_paths) $(all_assemblies) HelloWorld.cs
button.exe: ButtonApp.cs button.exe: ButtonApp.cs
$(MCS) --unsafe -o button.exe -L ../glib -L ../pango -L ../atk -L ../gdk -L ../gtk -r glib-sharp -r pango-sharp -r atk-sharp -r gdk-sharp -r gtk-sharp -r System.Drawing ButtonApp.cs $(MCS) --unsafe -o button.exe $(local_paths) $(all_assemblies) ButtonApp.cs
menu.exe: Menu.cs menu.exe: Menu.cs
$(MCS) --unsafe -o menu.exe -L ../glib -L ../pango -L ../atk -L ../gdk -L ../gtk -r glib-sharp -r pango-sharp -r atk-sharp -r gdk-sharp -r gtk-sharp -r System.Drawing Menu.cs $(MCS) --unsafe -o menu.exe $(local_paths) $(all_assemblies) Menu.cs
clean: clean:
rm -f *.exe rm -f *.exe