GtkSharp/glib/Makefile.in

21 lines
341 B
Makefile
Raw Normal View History

MCS=mcs
DESTDIR=
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
rm -f generated/*
install: all
cp glib-sharp.dll $(DESTDIR)@prefix@/lib || exit 1