diff --git a/ChangeLog b/ChangeLog index 0d54c0aa0..281bc46a7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +2002-05-13 Joe Shaw + + * sample/Makefile.in: Use -L compiler flags and specify all of the + assemblies to link against. + +2002-05-13 Joe Shaw + + * gtk/Makefile.in: Add the System.Drawing assembly to the compiler + command-line. + 2002-05-08 Joe Shaw * generator/ObjectGen.cs (GenProperty): And uncomment it out because diff --git a/sample/Makefile.in b/sample/Makefile.in index 8c3c68074..448e2de3f 100755 --- a/sample/Makefile.in +++ b/sample/Makefile.in @@ -9,10 +9,10 @@ windows: linux: gtk-hello-world.exe button.exe gtk-hello-world.exe: HelloWorld.cs - $(MCS) --unsafe -o gtk-hello-world.exe -r ../glib/glib-sharp.dll -r ../gtk/gtk-sharp.dll -r ../gdk/gdk-sharp.dll 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 button.exe: ButtonApp.cs - $(MCS) --unsafe -o button.exe -r ../glib/glib-sharp.dll -r ../gtk/gtk-sharp.dll 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 ButtonApp.cs clean: rm -f *.exe