Ryujinx-GtkSharp/glib/Makefile.in
Mike Kestner 07f41ef1c3 2002-05-07 Mike Kestner <mkestner@speakeasy.net>
* */Makefile.in : Add clean targets. Add -L parms.

svn path=/trunk/gtk-sharp/; revision=4400
2002-05-08 00:29:51 +00:00

19 lines
301 B
Makefile
Executable File

MCS=mcs
all: linux
windows:
$(CSC) /unsafe /target:library /out:glib-sharp.dll /recurse:*.cs
linux: glib-sharp.dll
glib-sharp.dll: *.cs generated/*.cs
$(MCS) --unsafe --target library -o glib-sharp.dll --recurse *.cs
clean:
rm -f *.dll
install: all
cp glib-sharp.dll @prefix@/lib || exit 1