📄 makefile
字号:
# Copyright (c) 1995 Dr. G.W. Wettstein <greg@wind.rmcc.com># Copyright (c) 2007 Martin Schulze <joey@infodrom.org>## 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.CC= gcc#SKFLAGS= -g -DSYSV -Wall#LDFLAGS= -gSKFLAGS= $(RPM_OPT_FLAGS) -O3 -DSYSV -fomit-frame-pointer -Wall -fno-strength-reduce# -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE# -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE# $(shell getconf LFS_SKFLAGS)LDFLAGS= -s# Look where your install program is.INSTALL = /usr/bin/install# Destination paths, set prefix=/opt if requiredBINDIR = $(prefix)/usr/sbinMANDIR = $(prefix)/usr/share/man# There is one report that under an all ELF system there may be a need to# explicilty link with libresolv.a. If linking syslogd fails you may wish# to try uncommenting the following define.# LIBS = /usr/lib/libresolv.a# A patch was forwarded which provided support for sysklogd under# the ALPHA. This patch included a reference to a library which may be# specific to the ALPHA. If you are attempting to build this package under# an ALPHA and linking fails with unresolved references please try# uncommenting the following define.# LIBS = ${LIBS} -linux# Define the following to impart start-up delay in klogd. This is# useful if klogd is started simultaneously or in close-proximity to syslogd.# KLOGD_START_DELAY = -DKLOGD_DELAY=5# The following define determines whether the package adheres to the# file system standard.FSSTND = -DFSSTND# The following define establishes ownership for the man pages.# Avery tells me that there is a difference between Debian and# Slackware. Rather than choose sides I am leaving it up to the user.MAN_USER = rootMAN_GROUP = rootMAN_PERMS = 644# The following define establishes the name of the pid file for the# syslogd daemon. The library include file (paths.h) defines the# name for the syslogd pid to be syslog.pid. A number of people have# suggested that this should be syslogd.pid. You may cast your# ballot below.SYSLOGD_PIDNAME = -DSYSLOGD_PIDNAME=\"syslogd.pid\"SYSLOGD_FLAGS= -DSYSLOG_INET -DSYSLOG_UNIXAF -DNO_SCCS ${FSSTND} \ ${SYSLOGD_PIDNAME}SYSLOG_FLAGS= -DALLOW_KERNEL_LOGGINGKLOGD_FLAGS = ${FSSTND} ${KLOGD_START_DELAY}DEB =all: syslogd klogdtest: syslog_tst ksym oops.ko tsyslogdinstall: install_man install_execsyslogd: syslogd.o pidfile.o ${CC} ${LDFLAGS} -o syslogd syslogd.o pidfile.o ${LIBS}klogd: klogd.o syslog.o pidfile.o ksym.o ksym_mod.o ${CC} ${LDFLAGS} -o klogd klogd.o syslog.o pidfile.o ksym.o \ ksym_mod.o ${LIBS}syslog_tst: syslog_tst.o ${CC} ${LDFLAGS} -o syslog_tst syslog_tst.otsyslogd: syslogd.c version.h $(CC) $(SKFLAGS) -g -DTESTING $(SYSLOGD_FLAGS) -o tsyslogd syslogd.ctklogd: klogd.c syslog.c ksym.c ksym_mod.c version.h $(CC) $(SKFLAGS) -g -DTESTING $(KLOGD_FLAGS) -o tklogd klogd.c syslog.c ksym.c ksym_mod.csyslogd.o: syslogd.c version.h ${CC} ${SKFLAGS} ${SYSLOGD_FLAGS} $(DEB) -c syslogd.csyslog.o: syslog.c ${CC} ${SKFLAGS} ${SYSLOG_FLAGS} -c syslog.cklogd.o: klogd.c klogd.h version.h ${CC} ${SKFLAGS} ${KLOGD_FLAGS} $(DEB) -c klogd.cksym.o: ksym.c klogd.h ksyms.h module.h ${CC} ${SKFLAGS} ${KLOGD_FLAGS} -c ksym.cksym_mod.o: ksym_mod.c klogd.h ksyms.h module.h ${CC} ${SKFLAGS} ${KLOGD_FLAGS} -c ksym_mod.csyslog_tst.o: syslog_tst.c ${CC} ${SKFLAGS} -c syslog_tst.cksym: ksym_test.o ksym_mod.o ${CC} ${LDFLAGS} -o ksym ksym_test.o ksym_mod.oksym_test.o: ksym.c ${CC} ${SKFLAGS} -DTEST -o ksym_test.o -c ksym.cclean: rm -f *.o *.log *~ *.orig rm -f *.ko oops.mod.* Module.symversclobber: clean rm -f syslogd klogd ksym syslog_tst oops_test TAGS tsyslogd tklogdinstall_exec: syslogd klogd ${INSTALL} -m 500 -s syslogd ${BINDIR}/syslogd ${INSTALL} -m 500 -s klogd ${BINDIR}/klogdinstall_man: ${INSTALL} -o ${MAN_USER} -g ${MAN_GROUP} -m ${MAN_PERMS} sysklogd.8 ${MANDIR}/man8/sysklogd.8 ${INSTALL} -o ${MAN_USER} -g ${MAN_GROUP} -m ${MAN_PERMS} syslogd.8 ${MANDIR}/man8/syslogd.8 ${INSTALL} -o ${MAN_USER} -g ${MAN_GROUP} -m ${MAN_PERMS} syslog.conf.5 ${MANDIR}/man5/syslog.conf.5 ${INSTALL} -o ${MAN_USER} -g ${MAN_GROUP} -m ${MAN_PERMS} klogd.8 ${MANDIR}/man8/klogd.8obj-m += oops.ooops.ko: oops.c make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -