mirror of
https://github.com/kernelkit/infix.git
synced 2026-07-30 04:33:00 +02:00
confd: Restructure list of source files
We were now at the point where it was completely impossible to see which files are actually built. Bring back some order, making future diffs easier to understand.
This commit is contained in:
committed by
Joachim Wiberg
parent
c4a1b2558d
commit
6ca6a4e2f8
@@ -4,10 +4,33 @@ AM_CPPFLAGS = -D_DEFAULT_SOURCE -D_XOPEN_SOURCE -D_GNU_SOURCE -DYANG
|
||||
plugindir = $(srpdplugindir)
|
||||
plugin_LTLIBRARIES = confd-plugin.la
|
||||
|
||||
confd_plugin_la_CFLAGS = $(augeas_CFLAGS) $(jansson_CFLAGS) $(libite_CFLAGS) $(sysrepo_CFLAGS) $(CFLAGS)
|
||||
confd_plugin_la_LIBADD = $(augeas_LIBS) $(jansson_LIBS) $(libite_LIBS) $(sysrepo_LIBS)
|
||||
confd_plugin_la_LDFLAGS = -module -avoid-version -shared
|
||||
confd_plugin_la_SOURCES = core.c core.h ../lib/helpers.c ../lib/helpers.h srx_val.c srx_val.h \
|
||||
ietf-system.c ietf-interfaces.c systemv.c systemv.h ../lib/lyx.c ../lib/lyx.h dagger.c dagger.h \
|
||||
infix-dhcp.c infix-factory.c ../lib/srx_module.c ../lib/srx_module.h \
|
||||
../lib/common.h
|
||||
|
||||
confd_plugin_la_CFLAGS = \
|
||||
$(augeas_CFLAGS) \
|
||||
$(jansson_CFLAGS) \
|
||||
$(libite_CFLAGS) \
|
||||
$(sysrepo_CFLAGS) \
|
||||
$(CFLAGS)
|
||||
|
||||
confd_plugin_la_LIBADD = \
|
||||
$(augeas_LIBS) \
|
||||
$(jansson_LIBS) \
|
||||
$(libite_LIBS) \
|
||||
$(sysrepo_LIBS)
|
||||
|
||||
confd_plugin_la_SOURCES = \
|
||||
ietf-interfaces.c \
|
||||
ietf-system.c \
|
||||
infix-dhcp.c \
|
||||
infix-factory.c \
|
||||
\
|
||||
../lib/common.h \
|
||||
../lib/helpers.c ../lib/helpers.h \
|
||||
../lib/lyx.c ../lib/lyx.h \
|
||||
../lib/srx_module.c ../lib/srx_module.h \
|
||||
\
|
||||
core.c core.h \
|
||||
dagger.c dagger.h \
|
||||
srx_val.c srx_val.h \
|
||||
systemv.c systemv.h
|
||||
|
||||
Reference in New Issue
Block a user