6b1dcfcd83
This uses the existing crunchgen infrastructure to build a series of tools designed to replace the base and networking tools on an embedded system. It reuses 'bsd.crunchgen.mk' to drive the actual file creation. The rescue build system also uses this. Unlike busybox, it doesn't include its own source - instead, it just builds from the sources in /usr/src/ and leverages the existing BSD framework. Thie is still quite messy and could do with a whole lot of cleaning up. However it is proving to be very useful with my current build framework, allowing me to build binary root images that are about 30% less than simply cherrypicking files and libraries from an installworld.
15 lines
501 B
Makefile
15 lines
501 B
Makefile
# Build telnetd
|
|
# Question - why is telnetds objects ending up in the srcdir? -adrian
|
|
|
|
# This won't work yet - because telnetd relies on libtelnet.a which includes
|
|
# kerberos support by default; building telnetd without kerberos support
|
|
# requires the cross-build world to be built the same.
|
|
# -adrian
|
|
|
|
# $FreeBSD$
|
|
|
|
CRUNCH_PROGS_libexec+= telnetd
|
|
CRUNCH_PROGS_usr.bin+= telnet
|
|
CRUNCH_LIBS+= -lkrb5 -lhx509 -lasn1 -lcom_err -lroken -ltelnetd
|
|
# CRUNCH_BUILDOPTS_telnetd= WITHOUT_KERBEROS_SUPPORT=yes
|