blob: 226bcc09379c913b8f0a08f5877b1444fdfa896c (
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
|
lib_LTLIBRARIES = libdexbnf.la
libdir = $(pluginslibdir)
libdexbnf_la_SOURCES = \
context.h context.c \
core.h core.c \
demangler.h demangler.c \
simple.h simple.c \
shorty.h shorty.c \
type.h type.c
libdexbnf_la_LIBADD = \
python/libdexbnfpython.la
libdexbnf_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 = $(libdexbnf_la_SOURCES:%c=)
AM_CPPFLAGS = $(LIBGTK_CFLAGS) $(LIBXML_CFLAGS) -I$(top_srcdir)/src
AM_CFLAGS = $(DEBUG_CFLAGS) $(WARNING_FLAGS) $(COMPLIANCE_FLAGS)
SUBDIRS = python
|