diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2018-04-22 09:50:50 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2018-04-22 09:50:50 (GMT) |
commit | 5194dad10519504c6c7416d85c9191a0075f9af1 (patch) | |
tree | 0705b405ea0fc5a055c5192a2281e490eca6827d /plugins/dex | |
parent | b127b9d7c8cb99ac14578f6ccd486c1238192e89 (diff) |
Included all plugins headers in the installation process.
Diffstat (limited to 'plugins/dex')
-rwxr-xr-x | plugins/dex/Makefile.am | 8 | ||||
-rw-r--r-- | plugins/dex/python/Makefile.am | 6 |
2 files changed, 13 insertions, 1 deletions
diff --git a/plugins/dex/Makefile.am b/plugins/dex/Makefile.am index cfa07d7..50c1dcc 100755 --- a/plugins/dex/Makefile.am +++ b/plugins/dex/Makefile.am @@ -1,6 +1,9 @@ lib_LTLIBRARIES = libdex.la +libdir = $(pluginsdir) + + libdex_la_SOURCES = \ core.h core.c \ class.h class.c \ @@ -18,6 +21,11 @@ libdex_la_LDFLAGS = $(LIBPYTHON_LIBS) $(LIBPYGOBJECT_LIBS) \ -L$(top_srcdir)/src/.libs -lchrysacore +devdir = $(includedir)/chrysalide-$(subdir) + +dev_HEADERS = $(libdex_la_SOURCES:%c=) + + AM_CPPFLAGS = $(LIBGTK_CFLAGS) $(LIBXML_CFLAGS) -I$(top_srcdir)/src AM_CFLAGS = $(DEBUG_CFLAGS) $(WARNING_FLAGS) $(COMPLIANCE_FLAGS) diff --git a/plugins/dex/python/Makefile.am b/plugins/dex/python/Makefile.am index fc6f85e..d23ca65 100644 --- a/plugins/dex/python/Makefile.am +++ b/plugins/dex/python/Makefile.am @@ -6,10 +6,14 @@ libdexpython_la_SOURCES = \ format.h format.c \ module.h module.c - libdexpython_la_LDFLAGS = +devdir = $(includedir)/chrysalide-$(subdir) + +dev_HEADERS = $(libdexpython_la_SOURCES:%c=) + + AM_CPPFLAGS = $(LIBGTK_CFLAGS) $(LIBXML_CFLAGS) $(LIBPYTHON_CFLAGS) $(LIBPYGOBJECT_CFLAGS) \ -I$(top_srcdir)/src |