/
githubmirror
/
audit-userspace
Обзор
Документация
Войти
/
githubmirror
/
audit-userspace
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
audisp/plugins/syslog/Makefile.am
55 строк
2 KB
Steve Grubb
audisp-syslog: bound interpreted record formatting
14 июл 2026, 22:40
14 июл 2026, 22:40
e4eeec8
Код
Авторство
О чём код?
# Makefile.am -- # Copyright 2018,19 Red Hat Inc. # All Rights Reserved. # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either # version 2.1 of the License, or (at your option) any later version. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; see the file COPYING. If not, write to the # Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor # Boston, MA 02110-1335, USA. # # Authors: # Steve Grubb <sgrubb@redhat.com> # CONFIG_CLEAN_FILES = *.loT *.rej *.orig EXTRA_DIST = syslog.conf $(man_MANS) AM_CPPFLAGS = -I${top_srcdir} -I${top_srcdir}/lib -I${top_srcdir}/common -I${top_srcdir}/auparse -I${top_srcdir}/auplugin prog_confdir = $(sysconfdir)/audit plugin_confdir=$(prog_confdir)/plugins.d plugin_conf = syslog.conf sbin_PROGRAMS = audisp-syslog man_MANS = audisp-syslog.8 check_PROGRAMS = test-syslog TESTS = $(check_PROGRAMS) audisp_syslog_DEPENDENCIES = ${top_builddir}/lib/libaudit.la ${top_builddir}/auparse/libauparse.la ${top_builddir}/auplugin/libauplugin.la audisp_syslog_SOURCES = audisp-syslog.c audisp_syslog_CFLAGS = -fPIE -DPIE -g -D_GNU_SOURCE -Wundef ${WFLAGS} audisp_syslog_LDFLAGS = -pie -Wl,-z,relro -Wl,-z,now audisp_syslog_LDADD = $(CAPNG_LDADD) ${top_builddir}/lib/libaudit.la ${top_builddir}/auparse/libauparse.la ${top_builddir}/auplugin/libauplugin.la test_syslog_SOURCES = test-syslog.c test_syslog_CFLAGS = $(audisp_syslog_CFLAGS) test_syslog_LDFLAGS = $(audisp_syslog_LDFLAGS) test_syslog_LDADD = $(audisp_syslog_LDADD) if HAVE_ASAN test_syslog_CFLAGS += ${ASAN_FLAGS} test_syslog_LDFLAGS += ${ASAN_FLAGS} endif install-data-hook: mkdir -p -m 0750 ${DESTDIR}${plugin_confdir} $(INSTALL_DATA) -D -m 640 ${srcdir}/$(plugin_conf) ${DESTDIR}${plugin_confdir} uninstall-hook: rm ${DESTDIR}${plugin_confdir}/$(plugin_conf)