Ryujinx-GtkSharp/vte/Makefile.in
John Luke 625a4481cc 2004-01-17 John Luke <jluke@cfl.rr.com>
* configure.in: detect and compile vte-sharp  (require vte-0.11.10)
	* vte/*:
	* sources/makefile:
	* sources/gtk-sharp-sources.xml: add vte
	* samples/VteTest.cs: add incomplete test/sample
	* samples/Makefile.in: add vte-test.exe target

svn path=/trunk/gtk-sharp/; revision=22213
2004-01-17 22:47:35 +00:00

42 lines
1.1 KiB
Makefile

APIS = vte-api.xml
INCLUDE_APIS = \
../gdk/gdk-api.xml \
../gtk/gtk-api.xml \
../atk/atk-api.xml
RUNTIME=mono
MCS=mcs
ASSEMBLY=vte-sharp.dll
@ENABLE_VTE_TRUE@ all: $(ASSEMBLY)
@ENABLE_VTE_FALSE@ all:
generated-stamp: vte-api.xml
gapi-fixup --api=$(APIS) --metadata=Vte.metadata && \
gapi-codegen --generate $(APIS) --include $(INCLUDE_APIS) --outdir=generated --customdir=. --assembly-name=vte-sharp && touch generated-stamp
vte-sharp.dll: generated-stamp
$(MCS) --unsafe --target library -L $(GTKSHARP_PREFIX)/lib \
-r glib-sharp.dll -r gtk-sharp.dll -r gdk-sharp.dll \
/r:atk-sharp.dll \
--recurse '@srcdir@/*.cs' -o vte-sharp.dll
clean:
rm -f $(ASSEMBLY)
rm -f generated-stamp
rm -rf generated
prefix=@prefix@
DESTDIR=
apidir=$(DESTDIR)$(prefix)/share/gapi
libdir=$(DESTDIR)$(prefix)/lib
install: all
@ENABLE_VTE_TRUE@ ../mkinstalldirs $(libdir) && \
@ENABLE_VTE_TRUE@ ../mkinstalldirs $(apidir) && \
@ENABLE_VTE_TRUE@ for i in $(APIS); do \
@ENABLE_VTE_TRUE@ cp $$i $(apidir) || true; \
@ENABLE_VTE_TRUE@ done && \
@ENABLE_VTE_TRUE@ cp $(ASSEMBLY) $(libdir)