diff options
| author | Ted Gould <ted@gould.cx> | 2010-01-01 04:30:23 +0000 |
|---|---|---|
| committer | Ted Gould <ted@gould.cx> | 2010-01-01 04:30:23 +0000 |
| commit | e588e1f405fa74d8e14735172570f1a542513625 (patch) | |
| tree | 59837b450e0eb6bb41817820a19d7aa3387b879c /src | |
| parent | Cleaning up the Makefile so it's easier to read (diff) | |
| download | inkscape-e588e1f405fa74d8e14735172570f1a542513625.tar.gz inkscape-e588e1f405fa74d8e14735172570f1a542513625.zip | |
Adding all of the library stuff in. Including libtool in configure and libtoolize in autogen.sh
(bzr r8254.1.46)
Diffstat (limited to 'src')
| -rw-r--r-- | src/extension/dbus/Makefile_insert | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/extension/dbus/Makefile_insert b/src/extension/dbus/Makefile_insert index 65ead8c93..aa4d17f22 100644 --- a/src/extension/dbus/Makefile_insert +++ b/src/extension/dbus/Makefile_insert @@ -51,3 +51,31 @@ service_DATA = $(service_in_files:.service.in=.service) $(service_DATA): $(service_in_files) Makefile @sed -e "s|bindir|$(prefix)|" $<> $@ +############################ +# DBus Interface Helper Lib +############################ + +lib_LTLIBRARIES = \ + libinkdbus.la + +libinkdbusincludedir = $(includedir)/libinkdbus-0.48/libinkdbus +libinkdbusinclude_HEADERS = \ + extension/dbus/wrapper/inkscape-dbus-wrapper.h + +libinkdbus_la_SOURCES = \ + extension/dbus/wrapper/inkscape-dbus-wrapper.h \ + extension/dbus/wrapper/inkscape-dbus-wrapper.c + +libinkdbus_la_LDFLAGS = \ + -version-info 0:0:0 \ + -no-undefined \ + -export-symbols-regex "^[^_d].*" + +libinkdbus_la_CFLAGS = \ + $(DBUS_CFLAGS) \ + $(INKSCAPE_CFLAGS) \ + -Wall -Werror + +libinkdbus_la_LIBADD = \ + $(DBUS_LIBS) \ + $(INKSCAPE_LIBS) |
