blob: 4dbae7fa82eb2a93a88ed2c6785334aede3929ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
noinst_LTLIBRARIES = libdalvikoperands.la
libdalvikoperands_la_SOURCES = \
args.h args.c \
pool.h pool.c \
register.h register.c
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 =
|