blob: 0a3ea1399d0f8a6b8d3b2393d824a9e742958133 (
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
28
29
30
31
32
|
noinst_LTLIBRARIES = libdebuggdbrsp.la
libdebuggdbrsp_la_SOURCES = \
aops.h \
gdb-int.h \
gdb.h gdb.c \
helpers.h helpers.c \
helpers_arm.h helpers_arm.c \
helpers_arm64.h helpers_arm64.c \
packet.h packet.c \
stream-int.h \
stream.h stream.c \
support.h support.c \
target.h target.c \
tcp.h tcp.c \
utils.h utils.c
libdebuggdbrsp_la_LIBADD =
libdebuggdbrsp_la_LDFLAGS = \
-L$(top_srcdir)/src/.libs -lchrysacore
devdir = $(includedir)/chrysalide/$(subdir:src/%=%)
dev_HEADERS = $(libdebuggdbrsp_la_SOURCES:%c=)
AM_CPPFLAGS = $(LIBGTK_CFLAGS) $(LIBXML_CFLAGS)
AM_CFLAGS = $(DEBUG_CFLAGS) $(WARNING_FLAGS) $(COMPLIANCE_FLAGS)
|