diff options
author | Ted Gould <ted@gould.cx> | 2011-02-10 14:47:52 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2011-02-10 14:47:52 -0600 |
commit | 18d89929cb035b798916e10a6aa253fd5bcf4e7d (patch) | |
tree | 953e74c6b5755b722efcaa63b70c23890d11418b /bindings/vala/Makefile.am | |
parent | 41981b1b0cc723c58e515702fc34cfd6bf500ae9 (diff) | |
parent | 23a4650671cb87a0e440b5c4284e437905f768b6 (diff) | |
download | libayatana-appindicator-18d89929cb035b798916e10a6aa253fd5bcf4e7d.tar.gz libayatana-appindicator-18d89929cb035b798916e10a6aa253fd5bcf4e7d.tar.bz2 libayatana-appindicator-18d89929cb035b798916e10a6aa253fd5bcf4e7d.zip |
Import upstream version 0.2.93
Diffstat (limited to 'bindings/vala/Makefile.am')
-rw-r--r-- | bindings/vala/Makefile.am | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/bindings/vala/Makefile.am b/bindings/vala/Makefile.am new file mode 100644 index 0000000..f80b48c --- /dev/null +++ b/bindings/vala/Makefile.am @@ -0,0 +1,36 @@ +if HAVE_INTROSPECTION +if HAVE_VAPIGEN + +SUBDIRS = . examples + +######################### +# VAPI Files +######################### + +if USE_GTK3 +GTKVAPI = gtk+-3.0 +VER=3 +else +GTKVAPI = gtk+-2.0 +VER= +endif + +vapidir = $(datadir)/vala/vapi +vapiprefix = appindicator$(VER)-0.1 +vapi_DATA = $(vapiprefix).vapi $(vapiprefix).deps +DEPS = $(GTKVAPI) + +$(vapiprefix).deps: + echo $(DEPS) > $@ + +$(vapiprefix).vapi: $(top_builddir)/src/AppIndicator$(VER)-0.1.gir \ + $(top_builddir)/src/AppIndicator$(VER)-0.1.metadata \ + $(vapiprefix).deps + $(VALA_API_GEN) --library=$(vapiprefix) --girdir=$(srcdir)/src \ + $< + + +CLEANFILES = $(vapi_DATA) + +endif +endif |