blob: 49f7f822d7155d1716f54cbc571c8a1fdb594cfe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
noinst_LTLIBRARIES = libarmv7registers.la
libarmv7registers_la_SOURCES = \
banked.h banked.c \
basic.h basic.c \
coproc.h coproc.c \
simd.h simd.c \
special.h special.c
libarmv7registers_la_LIBADD =
libarmv7registers_la_CFLAGS = $(AM_CFLAGS)
devdir = $(includedir)/chrysalide-$(subdir)
dev_HEADERS = $(libarmv7registers_la_SOURCES:%c=)
AM_CPPFLAGS = $(LIBGTK_CFLAGS) $(LIBXML_CFLAGS) -I$(top_srcdir)/src
AM_CFLAGS = $(DEBUG_CFLAGS) $(WARNING_FLAGS) $(COMPLIANCE_FLAGS)
|