2002-05-13 Joe Shaw <joe@assbarn.com>
* sample/Makefile.in: Use -L compiler flags and specify all of the assemblies to link against. svn path=/trunk/gtk-sharp/; revision=4587
This commit is contained in:
parent
ba6aa935d4
commit
07801f675c
2 changed files with 12 additions and 2 deletions
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
|||
2002-05-13 Joe Shaw <joe@assbarn.com>
|
||||
|
||||
* sample/Makefile.in: Use -L compiler flags and specify all of the
|
||||
assemblies to link against.
|
||||
|
||||
2002-05-13 Joe Shaw <joe@assbarn.com>
|
||||
|
||||
* gtk/Makefile.in: Add the System.Drawing assembly to the compiler
|
||||
command-line.
|
||||
|
||||
2002-05-08 Joe Shaw <joe@assbarn.com>
|
||||
|
||||
* generator/ObjectGen.cs (GenProperty): And uncomment it out because
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue