diff options
Diffstat (limited to 'libindicate')
-rw-r--r-- | libindicate/Makefile.am | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/libindicate/Makefile.am b/libindicate/Makefile.am new file mode 100644 index 0000000..f54be07 --- /dev/null +++ b/libindicate/Makefile.am @@ -0,0 +1,33 @@ + +INCLUDES= \ + -DG_LOG_DOMAIN=\"indicate\" + +EXTRA_DIST = \ + indicate-server.xml + +libindicateincludedir=$(includedir)/libindicate-1.0/libindicate + +indicate_headers = \ + indicator.h \ + server.h + +libindicateinclude_HEADERS = \ + $(indicate_headers) + +libindicate_SOURCES = \ + $(indicate_headers) \ + dbus-indicate-server.h + server.c \ + indicator.c + +libindicate_LDFLAGS = \ + -version-info 0:0:1 \ + -no-undefined \ + -export-symbols-regex "^[^_].*" + +dbus-indicate-server.h: indicate-server.xml + libtool --mode=execute dbus-binding-tool \ + --prefix=indicate_server \ + --mode=glib-server \ + --output=dbus-indicate-server.h \ + $(srcdir)/indicate-server.xml |