From a12b7e12520b9d27f8a12d23f34e04b69f35e5af Mon Sep 17 00:00:00 2001 From: Martin Willemoes Hansen Date: Wed, 3 Sep 2003 11:00:03 +0000 Subject: [PATCH] * gtkhtml: Added * gtkhtml/Makefile.in: Added * gtkhtml/.cvsignore: Added svn path=/trunk/gtk-sharp/; revision=17843 --- gtkhtml/.cvsignore | 3 +++ gtkhtml/Makefile.in | 29 +++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100755 gtkhtml/.cvsignore create mode 100755 gtkhtml/Makefile.in diff --git a/gtkhtml/.cvsignore b/gtkhtml/.cvsignore new file mode 100755 index 000000000..5304d4f1c --- /dev/null +++ b/gtkhtml/.cvsignore @@ -0,0 +1,3 @@ +gtkhtml-sharp.dll +generated +Makefile diff --git a/gtkhtml/Makefile.in b/gtkhtml/Makefile.in new file mode 100755 index 000000000..ce6cd1a8b --- /dev/null +++ b/gtkhtml/Makefile.in @@ -0,0 +1,29 @@ +MCS=mcs +DESTDIR= + +all: linux + +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 \ + /r:../gtk/gtk-sharp.dll /r:../gnome/gnome-sharp.dll \ + /out:gtkhtml-sharp.dll /recurse:*.cs + +linux: gtkhtml-sharp.dll + +gtkhtml-sharp.dll: generated/*.cs + $(MCS) --unsafe -nowarn:0660,0661 --target library \ + -r ../glib/glib-sharp.dll -r ../pango/pango-sharp.dll \ + -r ../atk/atk-sharp.dll -r ../gdk/gdk-sharp.dll \ + -r ../gtk/gtk-sharp.dll -r ../gnome/gnome-sharp.dll \ + -o gtkhtml-sharp.dll --recurse '*.cs' + +clean: + rm -f *.dll + rm -rf generated + +install: all + ../mkinstalldirs $(DESTDIR)@prefix@/lib && \ + cp gtkhtml-sharp.dll $(DESTDIR)@prefix@/lib +