From 356c9920edc9a0bcfa18d325f0bb9ec51510b194 Mon Sep 17 00:00:00 2001 From: Mike Kestner Date: Sat, 30 Mar 2002 00:18:41 +0000 Subject: [PATCH] 2002-03-29 Mike Kestner * */makefile : add make linux target. svn path=/trunk/gtk-sharp/; revision=3505 --- ChangeLog | 4 ++++ atk/makefile | 3 +++ gdk/makefile | 3 +++ glib/makefile | 3 +++ gtk/makefile | 3 +++ pango/makefile | 3 +++ 6 files changed, 19 insertions(+) diff --git a/ChangeLog b/ChangeLog index 807be4f2e..80a11df7c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2002-03-29 Mike Kestner + + * */makefile : add make linux target. + 2002-03-29 Mike Kestner * generator/SymbolTable.cs (Trim): revamp TrimEnd call. diff --git a/atk/makefile b/atk/makefile index 19602122d..2a781a70e 100644 --- a/atk/makefile +++ b/atk/makefile @@ -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 diff --git a/gdk/makefile b/gdk/makefile index 7cbdc7c27..269d2d61b 100755 --- a/gdk/makefile +++ b/gdk/makefile @@ -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." diff --git a/glib/makefile b/glib/makefile index 6a558aa6f..4b2c73c54 100755 --- a/glib/makefile +++ b/glib/makefile @@ -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." diff --git a/gtk/makefile b/gtk/makefile index 469444640..c14d1da48 100755 --- a/gtk/makefile +++ b/gtk/makefile @@ -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." diff --git a/pango/makefile b/pango/makefile index 66dc0adfc..a5c262db8 100644 --- a/pango/makefile +++ b/pango/makefile @@ -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."