add the MKNET variable to select a network stack

The MKNET variable can be used to select the network stack you want to
build and install with OpenRC.

The current default is the gentoo "oldnet" stack. If you want to install
the OpenRC newnet stack, use MKNET=newnet on the make command line.
This commit is contained in:
William Hubbs
2012-07-10 01:59:28 -05:00
parent ecb4d7c3f2
commit 60d6847de5
5 changed files with 26 additions and 15 deletions

View File

@@ -7,8 +7,7 @@ include Makefile.inc
SUBDIR= conf.d etc init.d local.d man scripts sh src sysctl.d
# Build our old net foo or not
MKOLDNET?= yes
ifeq (${MKOLDNET},yes)
ifeq (${MKNET},)
SUBDIR+= net doc
endif