blob: f164864bd4b0ff70ad04b40d82c03dd7c294073b (
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
|
noinst_LTLIBRARIES = libanalysisscanexprs.la
libanalysisscanexprs_la_SOURCES = \
arithmop-int.h \
arithmop.h arithmop.c \
boolop-int.h \
boolop.h boolop.c \
call-int.h \
call.h call.c \
literal-int.h \
literal.h literal.c \
relop-int.h \
relop.h relop.c \
str-int.h \
str.h str.c
libanalysisscanexprs_la_CFLAGS = $(TOOLKIT_CFLAGS) $(LIBXML_CFLAGS)
devdir = $(includedir)/chrysalide/$(subdir:src/%=core/%)
dev_HEADERS = $(libanalysisscanexprs_la_SOURCES:%c=)
|