mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-27 03:15:57 +00:00
4da6295257
* README.generator : updates for new parser script * api/Makefile.in : add gtkhtml-api.xml * api/*-api.xml : regenerated * parser/makefile : install new parsing script * parser/gapi-parser : new xml-driven parsing script * sources/makefile : call new parsing script * sources/gtk-sharp-sources.xml : new parser input file * sources/gtk-sharp.sources : killed svn path=/trunk/gtk-sharp/; revision=18491
35 lines
586 B
Makefile
35 lines
586 B
Makefile
APIS = \
|
|
atk-api.xml \
|
|
pango-api.xml \
|
|
gdk-api.xml \
|
|
gdk-symbols.xml \
|
|
gtk-api.xml \
|
|
gtkhtml-api.xml \
|
|
gtk-symbols.xml \
|
|
glade-api.xml \
|
|
art-api.xml \
|
|
gnome-api.xml \
|
|
gda-api.xml \
|
|
gst-api.xml \
|
|
gnomedb-api.xml \
|
|
rsvg-api.xml \
|
|
|
|
|
|
RUNTIME=mono
|
|
|
|
all: generated-stamp
|
|
|
|
generated-stamp: $(APIS) ../generator/gapi_codegen.exe
|
|
$(RUNTIME) ../generator/gapi_codegen.exe --generate $(APIS) && touch generated-stamp
|
|
|
|
clean:
|
|
rm -f generated-stamp
|
|
|
|
prefix=@prefix@
|
|
DESTDIR=
|
|
apidir=$(DESTDIR)$(prefix)/share/gapi
|
|
|
|
install: all
|
|
../mkinstalldirs $(apidir) && \
|
|
cp $(APIS) $(apidir)
|