summaryrefslogtreecommitdiff
path: root/plugins/dex/Makefile.am
blob: 95a63e097c392d7d1e431bbcbae19588de566e2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36

lib_LTLIBRARIES = libdex.la

libdir = $(pluginslibdir)


libdex_la_SOURCES =						\
	core.h core.c						\
	class.h class.c						\
	dex-int.h dex-int.c					\
	dex_def.h							\
	field.h field.c						\
	format.h format.c					\
	loading.h loading.c					\
	method.h method.c					\
	pool.h pool.c

libdex_la_LIBADD =						\
	python/libdexpython.la

libdex_la_LDFLAGS =													\
	-L$(top_srcdir)/src/.libs -lchrysacore							\
	-Wl,-rpath,$(abs_top_srcdir)/plugins/pychrysalide/.libs			\
	-L$(top_srcdir)/plugins/pychrysalide/.libs -l:pychrysalide.so


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)

SUBDIRS = python