blob: e657699a966980c1e1314f5ac9165ffd57011bc4 (
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
|
noinst_LTLIBRARIES = libarchx86.la
libarchx86_la_SOURCES = \
instruction.h instruction.c \
operand.h operand.c \
processor.h processor.c \
register.h register.c
libarchx86_la_LIBADD = \
opcodes/libarchx86opcodes.la \
operands/libarchx86operands.la
libarchx86_la_CFLAGS = $(AM_CFLAGS)
INCLUDES = $(LIBGTK_CFLAGS) $(LIBXML_CFLAGS)
AM_CPPFLAGS =
AM_CFLAGS = $(DEBUG_CFLAGS) $(WARNING_FLAGS) $(COMPLIANCE_FLAGS)
SUBDIRS = opcodes operands
|