GtkSharp/gnome/Makefile.in
Alp Toker 6be8587936 gtk/Makefile.in etc. : reference the newly compiled assemblies instead of those
already installed on the system

svn path=/trunk/gtk-sharp/; revision=6130
2002-07-24 11:47:01 +00:00

21 lines
663 B
Makefile
Executable file

MCS=mcs
@ENABLE_GNOME_TRUE@ all: linux
@ENABLE_GNOME_FALSE@ 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 /r:../gtk/gtk-sharp.dll /out:gnome-sharp.dll /recurse:*.cs
linux: gnome-sharp.dll
gnome-sharp.dll: generated/*.cs
$(MCS) --unsafe --target library -r System.Drawing -L ../glib -L ../pango -L ../atk -L ../gdk -L ../gtk -r glib-sharp.dll -r pango-sharp.dll -r atk-sharp.dll -r gdk-sharp.dll -r gtk-sharp.dll -o gnome-sharp.dll --recurse '*.cs'
clean:
rm -f *.dll
rm -f generated/*
install: all
@ENABLE_GNOME_TRUE@ cp gnome-sharp.dll @prefix@/lib