6be8587936
already installed on the system svn path=/trunk/gtk-sharp/; revision=6130
19 lines
367 B
Makefile
19 lines
367 B
Makefile
MCS=mcs
|
|
|
|
all: linux
|
|
|
|
windows:
|
|
$(CSC) /unsafe /target:library /r:../glib/glib-sharp.dll /out:pango-sharp.dll /recurse:*.cs
|
|
|
|
linux: pango-sharp.dll
|
|
|
|
pango-sharp.dll: generated/*.cs
|
|
$(MCS) --unsafe --target library -L ../glib -r glib-sharp.dll -o pango-sharp.dll --recurse '*.cs'
|
|
|
|
clean:
|
|
rm -f *.dll
|
|
rm -f generated/*
|
|
|
|
install: all
|
|
cp pango-sharp.dll @prefix@/lib
|
|
|