blob: 1c0423165fc62a14603e3f892c117257c4639575 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
noinst_LTLIBRARIES = libdalvikoperands.la
libdalvikoperands_la_SOURCES = \
args.h args.c \
pool.h pool.c \
register.h register.c
libdalvikoperands_la_CFLAGS = $(AM_CFLAGS)
devdir = $(includedir)/chrysalide-$(subdir)
dev_HEADERS = $(libdalvikoperands_la_SOURCES:%c=)
AM_CPPFLAGS = $(LIBGTK_CFLAGS) $(LIBXML_CFLAGS) -I$(top_srcdir)/src
AM_CFLAGS = $(DEBUG_CFLAGS) $(WARNING_FLAGS) $(COMPLIANCE_FLAGS)
SUBDIRS =
|