blob: 3d464e37f0cf5070573f2e15b36f09e92c5dece7 (
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
|
noinst_LTLIBRARIES = libarchoperands.la
libarchoperands_la_SOURCES = \
immediate.h immediate.c \
register-int.h \
register.h register.c \
targetable-int.h \
targetable.h targetable.c
libarchoperands_la_LIBADD =
libarchoperands_la_LDFLAGS =
devdir = $(includedir)/chrysalide/$(subdir:src/%=%)
dev_HEADERS = $(libarchoperands_la_SOURCES:%c=)
AM_CPPFLAGS = $(LIBGTK_CFLAGS) $(LIBXML_CFLAGS)
AM_CFLAGS = $(DEBUG_CFLAGS) $(WARNING_FLAGS) $(COMPLIANCE_FLAGS)
SUBDIRS =
|