diff options
author | rillig <rillig@pkgsrc.org> | 2007-10-18 21:52:23 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2007-10-18 21:52:23 +0000 |
commit | 75129993a0d52c4574440212dfac6197896d2af0 (patch) | |
tree | 8bc63956e40e42228866a4cb05bd8547950f5fa7 /mk/platform/UnixWare.mk | |
parent | 3371274360c6275e3d27d816653744f5dbb13360 (diff) | |
download | pkgsrc-75129993a0d52c4574440212dfac6197896d2af0.tar.gz |
Factored out the parts that are common between all the supported
platforms, mainly because it wouldn't have made sense to document the
variables in one of those files, but they need to be documented
somewhere.
Added the file defaults.mk, which now serves as the reference document
which provides useful default values and _explains_ the variables.
Diffstat (limited to 'mk/platform/UnixWare.mk')
-rw-r--r-- | mk/platform/UnixWare.mk | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/mk/platform/UnixWare.mk b/mk/platform/UnixWare.mk index fbcbab62c2d..d604401703b 100644 --- a/mk/platform/UnixWare.mk +++ b/mk/platform/UnixWare.mk @@ -1,4 +1,4 @@ -# $NetBSD: UnixWare.mk,v 1.24 2007/07/02 14:03:41 joerg Exp $ +# $NetBSD: UnixWare.mk,v 1.25 2007/10/18 21:52:24 rillig Exp $ # # Variable definitions for the UnixWare 7 operating system. @@ -11,19 +11,14 @@ PS?= /usr/bin/ps SU?= /usr/bin/su TYPE?= /usr/bin/type -CPP_PRECOMP_FLAGS?= # unset -DEF_UMASK?= 022 DEFAULT_SERIAL_DEVICE?= /dev/null EXPORT_SYMBOLS_LDFLAGS?= # Don't add symbols to the dynamic symbol table GROUPADD?= /usr/sbin/groupadd MOTIF_TYPE_DEFAULT?= dt # default 2.0 compatible libs type -NOLOGIN?= ${FALSE} ROOT_CMD?= ${SU} - root -c ROOT_GROUP?= root ROOT_USER?= root SERIAL_DEVICES?= /dev/null -ULIMIT_CMD_datasize?= ulimit -d `ulimit -H -d` -ULIMIT_CMD_stacksize?= ulimit -s `ulimit -H -s` ULIMIT_CMD_memorysize?= ulimit -v `ulimit -H -v` USERADD?= /usr/sbin/useradd @@ -92,3 +87,5 @@ PKG_TOOLS_BIN?= ${LOCALBASE}/sbin #GAMEMODE= 2555 #GAMEDIRMODE= 0775 #.endif + +.include "${.PARSEDIR}/defaults.mk" |