blob: 27da323386b5d8df314cb7ec3a4acbde23847f6b (
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
|
AUTOMAKE_OPTIONS = foreign
INCLUDES = $(RCSCRIPTS_DEFINES)
lib_LTLIBRARIES = librcscripts.la
librcscripts_la_SOURCES = \
rcscripts.h \
api/rctypes.h \
debug.c \
api/debug.h \
misc.c \
api/misc.h \
api/list.h \
api/str_list.h \
dynbuf.c \
api/dynbuf.h \
simple-regex.c \
api/simple-regex.h \
scripts.c \
api/scripts.h \
runlevels.c \
api/runlevels.h \
parse.c \
api/parse.h \
depend.c \
api/depend.h
|