diff options
author | Cody Russell <crussell@canonical.com> | 2010-01-11 22:59:17 -0600 |
---|---|---|
committer | Cody Russell <crussell@canonical.com> | 2010-01-11 22:59:17 -0600 |
commit | af45b19e657e5652c534d8019e1f6a374cbfcc4d (patch) | |
tree | e7d92ecd300a406165bbb17922456ac5e487473f /bindings/mono/Makefile.am | |
parent | bebf56594d9250ca07aaa13370674fa9b47abd89 (diff) | |
download | ayatana-indicator-application-af45b19e657e5652c534d8019e1f6a374cbfcc4d.tar.gz ayatana-indicator-application-af45b19e657e5652c534d8019e1f6a374cbfcc4d.tar.bz2 ayatana-indicator-application-af45b19e657e5652c534d8019e1f6a374cbfcc4d.zip |
Mono binding fixes.
Diffstat (limited to 'bindings/mono/Makefile.am')
-rw-r--r-- | bindings/mono/Makefile.am | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/bindings/mono/Makefile.am b/bindings/mono/Makefile.am index 54e0b53..eb6545b 100644 --- a/bindings/mono/Makefile.am +++ b/bindings/mono/Makefile.am @@ -17,13 +17,15 @@ assembly_DATA = $(TARGET) CLEANFILES = $(ASSEMBLY) $(ASSEMBLY).mdb generated-stamp generated/*.cs $(API) $(RAW_API) $(TEST) DISTCLEANFILES = $(ASSEMBLY).config TEST_SOURCES = TestIndicator.cs -EXTRA_DIST = \ - $(RAW_API) \ - $(METADATA) \ - appindicator-sharp-0.1.pc.in \ - appindicator-sharp.dll.config.in \ - app-indicator.sources.xml \ - $(ASSEMBLY_NAME).snk \ +customs = ApplicationIndicator.custom +EXTRA_DIST = \ + $(RAW_API) \ + $(METADATA) \ + appindicator-sharp-0.1.pc.in \ + appindicator-sharp.dll.config.in \ + app-indicator.sources.xml \ + $(ASSEMBLY_NAME).snk \ + $(customs) \ $(TEST_SOURCES) GACUTIL_FLAGS="-package $(ASSEMBLY_NAME) -root $(DESTDIR)$(prefix)/lib" @@ -63,9 +65,12 @@ $(API): $(MIDDLE_API) Makefile.am api_includes = $(GTK_SHARP_CFLAGS) -generated-stamp: $(API) +build_customs = $(addprefix $(srcdir)/, $(customs)) + +generated-stamp: $(API) $(build_customs) rm -f generated/* && \ $(GAPI_CODEGEN) --generate $(API) $(api_includes) \ + --customdir=$(srcdir) \ --outdir=generated --assembly-name=$(ASSEMBLY_NAME) \ && touch generated-stamp |