3f0273bece
* */makefile.win32 : remove api dir from build and fix clean target svn path=/trunk/gtk-sharp/; revision=18864
17 lines
473 B
Text
17 lines
473 B
Text
ASSEMBLY=atk-sharp.dll
|
|
APIS=atk-api.xml
|
|
I_APIS=
|
|
|
|
all: windows
|
|
|
|
windows: generated-stamp
|
|
$(CSC) /unsafe /nowarn:0660,0661 /target:library /r:../glib/glib-sharp.dll /r:../pango/pango-sharp.dll /out:$(ASSEMBLY) /recurse:*.cs
|
|
|
|
generated-stamp: ../generator/codegen.exe atk-api.xml
|
|
../generator/codegen --generate $(APIS) --outdir=generated --customdir=. --assembly-name=atk-sharp && touch generated-stamp
|
|
|
|
clean:
|
|
rm -f generated-stamp
|
|
rm -f $(ASSEMBLY)
|
|
rm -rf generated
|
|
|