2002-03-29 Mike Kestner <mkestner@speakeasy.net>

* */makefile : add make linux target.

svn path=/trunk/gtk-sharp/; revision=3505
This commit is contained in:
Mike Kestner 2002-03-30 00:18:41 +00:00
parent ff61ba7907
commit 356c9920ed
6 changed files with 19 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2002-03-29 Mike Kestner <mkestner@speakeasy.net>
* */makefile : add make linux target.
2002-03-29 Mike Kestner <mkestner@speakeasy.net>
* generator/SymbolTable.cs (Trim): revamp TrimEnd call.

View File

@ -6,6 +6,9 @@ all:
windows:
$(CSC) /unsafe /target:library /r:../glib/glib-sharp.dll /r:../pango/pango-sharp.dll /out:atk-sharp.dll /recurse:*.cs
linux:
mcs --unsafe --target library -r ../glib/glib-sharp.dll -r ../pango/pango-sharp.dll -o atk-sharp.dll --recurse *.cs
unix:
@echo "'make unix' is broken for now."
$(CSC) --unsafe --target=library --r=../glib/glib-sharp.dll --r=../pango/pango-sharp.dll --out=atk-sharp.dll --recurse=*.cs

View File

@ -6,5 +6,8 @@ all:
windows:
$(CSC) /unsafe /target:library /r:../glib/glib-sharp.dll /r:../pango/pango-sharp.dll /r:../atk/atk-sharp.dll /out:gdk-sharp.dll /recurse:*.cs
linux:
mcs --unsafe --target library -r ../glib/glib-sharp.dll -r ../pango/pango-sharp.dll -r ../atk/atk-sharp.dll -o gdk-sharp.dll --recurse *.cs
unix:
@echo "'make unix' is broken for now."

View File

@ -6,5 +6,8 @@ all:
windows:
$(CSC) /unsafe /target:library /out:glib-sharp.dll /recurse:*.cs
linux:
mcs --unsafe --target library -o glib-sharp.dll --recurse *.cs
unix:
@echo "'make unix' is broken for now."

View File

@ -5,6 +5,9 @@ all:
windows:
$(CSC) /unsafe /target:library /r:../glib/glib-sharp.dll /r:../pango/pango-sharp.dll /r:../atk/atk-sharp.dll /r:../gdk/gdk-sharp.dll /out:gtk-sharp.dll /recurse:*.cs
linux:
mcs --unsafe --target library -r ../glib/glib-sharp.dll -r ../pango/pango-sharp.dll -r ../atk/atk-sharp.dll -r ../gdk/gdk-sharp.dll -o gtk-sharp.dll --recurse *.cs
unix:
@echo "'make unix' is broken for now."

View File

@ -6,5 +6,8 @@ all:
windows:
$(CSC) /unsafe /target:library /r:../glib/glib-sharp.dll /out:pango-sharp.dll /recurse:*.cs
linux:
mcs --unsafe --target library -r ../glib/glib-sharp.dll -o pango-sharp.dll --recurse *.cs
unix:
@echo "'make unix' is broken for now."