blob: 1266a63c8fc3fcdb1f0fc35fa337402c9ec77a2e (
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
33
34
|
noinst_LTLIBRARIES = libanalysisscanexprs.la
libanalysisscanexprs_la_SOURCES = \
access-int.h \
access.h access.c \
arithmetic-int.h \
arithmetic.h arithmetic.c \
call-int.h \
call.h call.c \
counter-int.h \
counter.h counter.c \
intersect-int.h \
intersect.h intersect.c \
literal-int.h \
literal.h literal.c \
logical-int.h \
logical.h logical.c \
range-int.h \
range.h range.c \
relational-int.h \
relational.h relational.c \
set-int.h \
set.h set.c \
strop-int.h \
strop.h strop.c
libanalysisscanexprs_la_CFLAGS = $(TOOLKIT_CFLAGS) $(LIBXML_CFLAGS)
devdir = $(includedir)/chrysalide/$(subdir:src/%=core/%)
dev_HEADERS = $(libanalysisscanexprs_la_SOURCES:%c=)
|