GtkSharp/api/Makefile.in
Mike Kestner 4da6295257 2003-10-01 Mike Kestner <mkestner@ximian.com>
* 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
2003-10-01 21:42:29 +00:00

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)