blob: 3eb287bd279df09b0d4fdcc99290c19017dfb878 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
noinst_LTLIBRARIES = libanalysisstorage.la
libanalysisstorage_la_SOURCES = \
cache-int.h \
cache.h cache.c \
container-int.h \
container.h container.c \
serialize-int.h \
serialize.h serialize.c \
storage-int.h \
storage.h storage.c \
tpmem.h tpmem.c
libanalysisstorage_la_CFLAGS = $(TOOLKIT_CFLAGS) $(LIBXML_CFLAGS)
devdir = $(includedir)/chrysalide/$(subdir:src/%=core/%)
dev_HEADERS = $(libanalysisstorage_la_SOURCES:%c=)
|