ed56ec3a05
There's two variables added to Makefile.crunch: SMALLPROG If 1, add SMALLPROG=1 to CRUNCHENV. [default: 1] This can be used by various Makefiles to determine if a `small' version of the program is required. SMALLPROG_INET6 If 1 and SMALLPROG == 1, add SMALLPROG_INET6=1 to CRUNCHENV. [default: 0] This can be used by various Makefiles to determine if the `small' version has INET6 support enabled. Only enable SMALLPROG_INET6 for programs on the ramdisks that have INET6 in the appropriate kernel, and cleanup INET6 setting. (Note: this means that sysinst won't get INET6 support if the kernel it's running on doesn't have it). This change saves a fair bit of space on various install images (including i386 ramdisk-{ps2,small,tiny}) that didn't have INET6 in the kernel but were unconditionally getting INET6 support in their tools.
20 lines
354 B
Makefile
20 lines
354 B
Makefile
# $NetBSD: Makefile,v 1.20 2002/10/17 02:05:39 lukem Exp $
|
|
# Build a smaller ifconfig (i.e. for boot media)
|
|
|
|
SRCDIR= ${.CURDIR}/../../../sbin/ifconfig
|
|
|
|
PROG= ifconfig
|
|
NOMAN= # defined
|
|
|
|
CPPFLAGS+= -DINET_ONLY -I${SRCDIR}
|
|
.if defined(SMALLPROG_INET6)
|
|
CPPFLAGS+= -DINET6
|
|
.endif
|
|
|
|
DPADD+=${LIBUTIL}
|
|
LDADD+=-lutil
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
.PATH: ${SRCDIR}
|