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
|
if ENABLE_PACCT
module_LTLIBRARIES += modules/pacctformat/libpacctformat.la
modules_pacctformat_libpacctformat_la_SOURCES = \
modules/pacctformat/pacct-format.c \
modules/pacctformat/pacct-format.h \
modules/pacctformat/pacct-format-plugin.c
modules_pacctformat_libpacctformat_la_CPPFLAGS = \
$(AM_CPPFLAGS)
modules_pacctformat_libpacctformat_la_LIBADD = \
$(MODULE_DEPS_LIBS)
modules_pacctformat_libpacctformat_la_LDFLAGS = \
$(MODULE_LDFLAGS)
EXTRA_modules_pacctformat_libpacctformat_la_DEPENDENCIES= \
$(MODULE_DEPS_LIBS)
modules/pacctformat modules/pacctformat/ mod-pacctformat: \
modules/pacctformat/libpacctformat.la
else
modules/pacctformat modules/pacctformat/ mod-pacctformat:
endif
EXTRA_DIST += modules/pacctformat/CMakeLists.txt
.PHONY: modules/pacctformat/ mod-pacctformat
|