2008-03-05 17:57:11 +05:30
|
|
|
DIR= ${INITDIR}
|
2013-04-08 23:16:51 +05:30
|
|
|
SRCS= bootmisc.in fsck.in hostname.in local.in localmount.in loopback.in \
|
|
|
|
netmount.in root.in savecache.in swap.in swapfiles.in \
|
2012-10-31 21:23:37 +05:30
|
|
|
tmpfiles.setup.in swclock.in sysctl.in urandom.in ${SRCS-${OS}}
|
2008-03-03 18:04:51 +05:30
|
|
|
BIN= ${OBJS}
|
2007-04-05 16:48:42 +05:30
|
|
|
|
2012-07-09 01:32:11 +05:30
|
|
|
# Build our old net foo or not
|
2012-07-10 12:29:28 +05:30
|
|
|
ifeq (${MKNET},)
|
2012-07-10 22:48:06 +05:30
|
|
|
SRCS+= network.in staticroute.in
|
2012-07-09 01:32:11 +05:30
|
|
|
endif
|
|
|
|
|
2012-07-10 22:48:06 +05:30
|
|
|
ifeq (${MKNET},oldnet)
|
|
|
|
INSTALLAFTER= _installafter_net.lo
|
|
|
|
SRCS+= net.lo.in
|
2012-07-10 12:29:28 +05:30
|
|
|
endif
|
2008-04-29 15:55:45 +05:30
|
|
|
|
2008-01-10 22:05:59 +05:30
|
|
|
MK= ../mk
|
2008-03-25 19:36:05 +05:30
|
|
|
include ${MK}/os.mk
|
2011-10-18 06:48:39 +05:30
|
|
|
|
2011-10-20 07:00:39 +05:30
|
|
|
NET_LO-FreeBSD= net.lo0
|
2011-10-18 06:48:39 +05:30
|
|
|
# Generic BSD scripts
|
2011-10-20 07:00:39 +05:30
|
|
|
SRCS-FreeBSD= hostid.in moused.in newsyslog.in pf.in rarpd.in rc-enabled.in \
|
|
|
|
rpcbind.in savecore.in syslogd.in
|
2011-10-18 06:48:39 +05:30
|
|
|
# These are FreeBSD specific
|
2012-07-15 18:17:00 +05:30
|
|
|
SRCS-FreeBSD+= adjkerntz.in devd.in dumpon.in encswap.in ipfw.in \
|
|
|
|
mixer.in nscd.in powerd.in syscons.in
|
2011-10-18 06:48:39 +05:30
|
|
|
|
2011-10-20 07:00:39 +05:30
|
|
|
NET_LO-Linux= net.lo
|
|
|
|
SRCS-Linux= devfs.in dmesg.in hwclock.in consolefont.in keymaps.in \
|
|
|
|
killprocs.in modules.in mount-ro.in mtab.in numlock.in \
|
2013-07-25 23:03:03 +05:30
|
|
|
procfs.in sysfs.in termencoding.in tmpfiles.dev.in
|
2011-10-18 06:48:39 +05:30
|
|
|
|
2011-10-20 07:00:39 +05:30
|
|
|
NET_LO-NetBSD= net.lo0
|
2011-10-18 06:48:39 +05:30
|
|
|
# Generic BSD scripts
|
2011-10-20 07:00:39 +05:30
|
|
|
SRCS-NetBSD= hostid.in moused.in newsyslog.in pf.in rarpd.in rc-enabled.in \
|
|
|
|
rpcbind.in savecore.in syslogd.in
|
2011-10-18 06:48:39 +05:30
|
|
|
# These are NetBSD specific
|
2011-10-20 07:00:39 +05:30
|
|
|
SRCS-NetBSD+= devdb.in swap-blk.in ttys.in wscons.in
|
2011-10-18 06:48:39 +05:30
|
|
|
|
2011-10-28 21:44:44 +05:30
|
|
|
%.in: %${SFX}
|
2011-10-18 06:48:39 +05:30
|
|
|
sed ${SED_REPLACE} ${SED_EXTRA} $< > $@
|
|
|
|
|
2008-01-10 22:05:59 +05:30
|
|
|
include ${MK}/scripts.mk
|
2008-04-29 15:55:45 +05:30
|
|
|
|
2009-04-18 04:53:31 +05:30
|
|
|
_installafter_: realinstall
|
|
|
|
|
|
|
|
_installafter_net.lo: realinstall
|
2012-07-10 12:29:28 +05:30
|
|
|
${INSTALL} -m ${BINMODE} net.lo ${DESTDIR}/${INITDIR}/${NET_LO-${OS}}
|