GtkSharp/gst/Makefile.in
Alp Toker bef7dc015f * gst/Makefile.in: Reference the newly-built glib-sharp
svn path=/trunk/gtk-sharp/; revision=9805
2002-12-21 02:48:21 +00:00

21 lines
375 B
Makefile
Executable file

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