11017a687b
build process in too many cases. Adding mtree to bootstrap-tools to solve this breaks the upgrade path because mtree needs a libc that has strtofflags and fflagstostr.
49 lines
958 B
Makefile
49 lines
958 B
Makefile
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
DESTDIR?=${MFS_MOUNTPOINT}
|
|
|
|
STAND_LINKS?= bin sbin usr/local/bin
|
|
USR_LINKS?= bin sbin libexec
|
|
#PL_LOCALE_LINKS?= pl polish
|
|
MY_DEVS?= std tun2 cuaa0 cuaa1 cuaa2 vty10 fd0 wd0s1h pty0 ttyd0 cuaa0 wd1 wd2 wd3 bpf0 bpf1 sa0 sa1
|
|
|
|
all: tree links
|
|
|
|
tree:
|
|
@echo "--- making tree"
|
|
@( if [ -f mfs.mtree ] ; then \
|
|
mtree -deU -f mfs.mtree -p ${DESTDIR}; \
|
|
else \
|
|
mtree -deU -f ../build/mfs.mtree -p ${DESTDIR} ; \
|
|
fi )
|
|
|
|
links: tree
|
|
@echo "--- making links"
|
|
(cd ${DESTDIR}; \
|
|
for i in ${STAND_LINKS}; \
|
|
do \
|
|
ln -s /stand $${i}; \
|
|
done; \
|
|
cd var/run; \
|
|
ln -s /dev/null log; \
|
|
cd ../../usr; \
|
|
for i in ${USR_LINKS}; \
|
|
do \
|
|
ln -s /stand $${i}; \
|
|
done; \
|
|
cd share/misc;\
|
|
ln -s /etc/termcap termcap; )
|
|
|
|
|
|
# We don't do it under 'all' because it's needed only on non-DEVFS systems
|
|
devnodes: tree
|
|
@echo "--- making device nodes"
|
|
(cd ${DESTDIR}/dev; \
|
|
ln -s /dev/MAKEDEV; \
|
|
./MAKEDEV ${MY_DEVS}; \
|
|
rm MAKEDEV)
|
|
|
|
clean:
|