Ryujinx-GtkSharp/pango/makefile.win32
Mike Kestner 3f0273bece 2003-10-10 Mike Kestner <mkestner@ximian.com>
* */makefile.win32 : remove api dir from build and fix clean target

svn path=/trunk/gtk-sharp/; revision=18864
2003-10-10 18:58:19 +00:00

18 lines
446 B
Plaintext

ASSEMBLY=pango-sharp.dll
APIS=pango-api.xml
I_APIS=
all: windows
windows: generated-stamp
$(CSC) /unsafe /nowarn:0660,0661 /target:library /r:../glib/glib-sharp.dll /out:$(ASSEMBLY) /recurse:*.cs
generated-stamp: ../generator/codegen.exe $(APIS)
../generator/codegen --generate $(APIS) --outdir=generated --customdir=. --assembly-name=pango-sharp && touch generated-stamp
clean:
rm -f generated-stamp
rm -f $(ASSEMBLY)
rm -rf generated