af97a5bb0a
Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
50 lines
2.0 KiB
Makefile
50 lines
2.0 KiB
Makefile
# Copyright (c) 2018 Joachim Nilsson <troglobit@gmail.com>
|
|
#
|
|
# This file is part of the sysklogd package, a kernel and system log daemon.
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program 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 General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
AUTOMAKE_OPTIONS = subdir-objects
|
|
|
|
bin_PROGRAMS = logger
|
|
sbin_PROGRAMS = syslogd klogd
|
|
lib_LTLIBRARIES = libsyslog.la
|
|
|
|
AM_CFLAGS = -W -Wall -Wextra
|
|
AM_CFLAGS += -Wno-unused-result -Wno-unused-parameter
|
|
AM_CFLAGS += -fno-strict-aliasing -fno-strength-reduce
|
|
|
|
syslogd_SOURCES = syslogd.c syslog.h pidfile.c pidfile.h
|
|
syslogd_CPPFLAGS = -D_XOPEN_SOURCE=600 -D_BSD_SOURCE -D_DEFAULT_SOURCE
|
|
syslogd_LDADD = $(LIBS) $(LIBOBJS)
|
|
|
|
klogd_SOURCES = klogd.c klogd.h syslog.h pidfile.c pidfile.h \
|
|
ksym.c ksyms.h ksym_mod.c module.h
|
|
klogd_CPPFLAGS = -DALLOW_KERNEL_LOGGING -D_BSD_SOURCE -D_DEFAULT_SOURCE
|
|
klogd_LDADD = $(LIBS) $(LIBOBJS)
|
|
klogd_LDADD += libsyslog.la
|
|
|
|
logger_SOURCES = logger.c syslog.h
|
|
logger_CPPFLAGS = -D_XOPEN_SOURCE=600 -D_BSD_SOURCE -D_DEFAULT_SOURCE
|
|
logger_LDADD = $(LIBS) $(LIBOBJS)
|
|
logger_LDADD += libsyslog.la
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgincludedir = $(includedir)/syslog
|
|
pkgconfig_DATA = libsyslog.pc
|
|
pkginclude_HEADERS = syslog.h
|
|
libsyslog_la_SOURCES = syslog.c syslog.h
|
|
libsyslog_la_CPPFLAGS = -D_XOPEN_SOURCE=600 -D_BSD_SOURCE -D_DEFAULT_SOURCE
|
|
libsyslog_la_LDFLAGS = $(AM_LDFLAGS) -version-info 0:0:0
|