blob: bafcedabc9d3c73187cd6a134c80926a64ca7931 (
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
|
noinst_LTLIBRARIES = libdebug.la
libdebug_la_SOURCES = \
break-int.h \
break.h break.c \
debugger-int.h \
debugger.h debugger.c \
misc.h \
packet-int.h \
packet.h packet.c \
stream-int.h \
stream.h stream.c
libdebug_la_LIBADD = \
gdbrsp/libdebuggdbrsp.la
libdebug_la_CFLAGS = $(AM_CFLAGS)
devdir = $(includedir)/chrysalide/$(subdir:src/%=%)
dev_HEADERS = $(libdebug_la_SOURCES:%c=)
AM_CPPFLAGS = $(LIBGTK_CFLAGS) $(LIBXML_CFLAGS)
AM_CFLAGS = $(DEBUG_CFLAGS) $(WARNING_FLAGS) $(COMPLIANCE_FLAGS)
SUBDIRS = gdbrsp
|