blob: a884b46bc1f952f672b64a032b3f96e9a719f832 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
DIR= ${CONFDIR}
CONF= bootmisc fsck hostname local localmount network urandom
TARGETS+= network
CLEANFILES+= network
MK= ../mk
include ${MK}/os.mk
include Makefile.${OS}
include ${MK}/scripts.mk
network: network.in network.${OS}
cp network.in network
[ -e network.${OS} ] && cat network.${OS} >> network
|