diff options
author | Roy Marples <roy@marples.name> | 2009-04-19 08:52:00 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2009-04-19 08:52:00 +0000 |
commit | 170547010f78a0b195157b60f3c7cae4a3380a86 (patch) | |
tree | 4f1a865f0068f1ca43f6c33a0d2e5c218684601a /conf.d/Makefile | |
parent | 3579663173be18becb5f4ddadf859e5984eab660 (diff) |
Pull /etc/ifconfig.eth0 into interfaces
Reverse list of interfaces when stopping
Improve build for conf.d/network
Diffstat (limited to 'conf.d/Makefile')
-rw-r--r-- | conf.d/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/conf.d/Makefile b/conf.d/Makefile index 9d0fc0d0..a884b46b 100644 --- a/conf.d/Makefile +++ b/conf.d/Makefile @@ -1,9 +1,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 |