blob: ce21776f98567aecf339127d7eac0f2c9bb54df3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
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_CFLAGS = $(TOOLKIT_CFLAGS) $(LIBXML_CFLAGS)
devdir = $(includedir)/chrysalide/$(subdir:src/%=core/%)
dev_HEADERS = $(libdebug_la_SOURCES:%c=)
|