blob: 496872adb0c7f6bff025e5f0b468c57e43224fbb (
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
|
noinst_LTLIBRARIES = libarcharm.la
libarcharm_la_SOURCES = \
cond.h \
context-int.h \
context.h context.c \
instruction-int.h \
instruction.h instruction.c \
link.h link.c \
processor-int.h \
processor.h processor.c \
register-int.h \
register.h register.c
libarcharm_la_LIBADD = \
v7/libarcharmv7.la
libarcharm_la_CFLAGS = $(AM_CFLAGS)
AM_CPPFLAGS = $(LIBGTK_CFLAGS) $(LIBXML_CFLAGS)
AM_CFLAGS = $(DEBUG_CFLAGS) $(WARNING_FLAGS) $(COMPLIANCE_FLAGS)
SUBDIRS = v7
|