blob: 7513965b06a3725c64bb2b7cfcc0eba172ea0c81 (
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
|
AUTOMAKE_OPTIONS = foreign
INCLUDES = \
-I$(top_srcdir) \
-I$(top_srcdir)/include \
-I$(top_builddir)/include \
$(RCSCRIPTS_DEFINES)
LIBRCUTIL = $(top_builddir)/librcutil/librcutil.la
lib_LTLIBRARIES = librccore.la
librccore_la_LIBADD = $(LIBRCUTIL)
librccore_la_SOURCES = \
internal/rccore.h \
scripts.c \
api/scripts.h \
runlevels.c \
api/runlevels.h \
parse.c \
api/parse.h \
depend.c \
api/depend.h \
services.c \
internal/services.h \
init.c
|