Remove support for symlinks instead of copies. This also avoids

using mtree. Space is being saved by other means.
This commit is contained in:
Marcel Moolenaar
1999-12-08 13:47:30 +00:00
parent 894157f536
commit 02cca88299
2 changed files with 30 additions and 77 deletions
+28 -61
View File
@@ -2,9 +2,6 @@
# $FreeBSD$ # $FreeBSD$
# #
# Doing a make install builds /usr/include # Doing a make install builds /usr/include
#
# The ``rm -rf''s used below are safe because rm doesn't follow symbolic
# links.
CLEANFILES= osreldate.h version vers.c CLEANFILES= osreldate.h version vers.c
SUBDIR= rpcsvc SUBDIR= rpcsvc
@@ -35,24 +32,14 @@ MFILES= float.h floatingpoint.h stdarg.h varargs.h
# posix4/aio.h conflicts with dysons and isn't installed: # posix4/aio.h conflicts with dysons and isn't installed:
PFILES= mqueue.h sched.h semaphore.h # aio.h PFILES= mqueue.h sched.h semaphore.h # aio.h
# Only for default SHARED=copies case SFILES= joystick.h soundcard.h
SFILES= soundcard.h joystick.h
LFILES= aio.h errno.h fcntl.h inttypes.h linker_set.h poll.h syslog.h \ LFILES= aio.h errno.h fcntl.h inttypes.h linker_set.h poll.h syslog.h \
termios.h ucontext.h termios.h ucontext.h
LDIRS= cam msdosfs net netatalk netatm netgraph netinet netinet6 \ LDIRS= cam cam/scsi isofs/cd9660 msdosfs net netatalk netatm netgraph \
netipx netkey netncp netns nfs ntfs nwfs pccard posix4 sys vm netinet netinet6 netipx netkey netncp netns nfs ntfs nwfs pccard \
posix4 sys ufs/ffs ufs/mfs ufs/ufs vm
LNOHEADERDIRS= isofs ufs
LSUBDIRS= isofs/cd9660 ufs/ffs ufs/mfs ufs/ufs cam/scsi
# Define SHARED to indicate whether you want symbolic links to the system
# source (``symlinks''), or a separate copy (``copies''). ``symlinks'' is
# probably only useful for developers and should be avoided if you do not
# wish to tie your /usr/include and /usr/src together.
#SHARED= symlinks
SHARED?= copies
all: osreldate.h all: osreldate.h
@@ -65,42 +52,22 @@ osreldate.h: ${.CURDIR}/../sys/conf/newvers.sh \
echo \#'undef __FreeBSD_version' >> osreldate.h; \ echo \#'undef __FreeBSD_version' >> osreldate.h; \
echo \#'define __FreeBSD_version' $$RELDATE >> osreldate.h echo \#'define __FreeBSD_version' $$RELDATE >> osreldate.h
beforeinstall: ${SHARED} beforeinstall:
@rm -f ${DESTDIR}/usr/include/timepps.h ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ${.OBJDIR}/osreldate.h \
cd ${.CURDIR}; \
${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \
${FILES} ${DESTDIR}/usr/include
cd ${.CURDIR}/arpa; \
${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \
${ARPAFILES} ${DESTDIR}/usr/include/arpa
cd ${.CURDIR}/protocols; \
${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \
${PROTOFILES} ${DESTDIR}/usr/include/protocols
cd ${.CURDIR}/rpc; \
${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \
${RPCFILES} ${DESTDIR}/usr/include/rpc
${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \
${.OBJDIR}/osreldate.h \
${DESTDIR}/usr/include ${DESTDIR}/usr/include
.for i in ${LFILES} cd ${.CURDIR}; \
ln -sf sys/$i ${DESTDIR}/usr/include/$i ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ${FILES} \
.endfor ${DESTDIR}/usr/include
.for i in ${MFILES} cd ${.CURDIR}/arpa; \
ln -sf machine/$i ${DESTDIR}/usr/include/$i ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ${ARPAFILES} \
.endfor ${DESTDIR}/usr/include/arpa
.for i in ${PFILES} cd ${.CURDIR}/protocols; \
ln -sf posix4/$i ${DESTDIR}/usr/include/$i ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ${PROTOFILES} \
.endfor ${DESTDIR}/usr/include/protocols
cd ${.CURDIR}/rpc; \
copies: ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ${RPCFILES} \
.for i in ${LDIRS} ${LNOHEADERDIRS} machine ${DESTDIR}/usr/include/rpc
if [ -h ${DESTDIR}/usr/include/$i ]; then \ .for i in ${LDIRS}
rm -f ${DESTDIR}/usr/include/$i; \
fi
.endfor
mtree -deU -f ${.CURDIR}/../etc/mtree/BSD.include.dist \
-p ${DESTDIR}/usr/include
.for i in ${LDIRS} ${LSUBDIRS}
cd ${.CURDIR}/../sys; \ cd ${.CURDIR}/../sys; \
${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 $i/*.h \ ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 $i/*.h \
${DESTDIR}/usr/include/$i ${DESTDIR}/usr/include/$i
@@ -110,17 +77,17 @@ copies:
${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
${DESTDIR}/usr/include/machine ${DESTDIR}/usr/include/machine
.endif .endif
.for i in ${LFILES}
ln -sf sys/$i ${DESTDIR}/usr/include/$i
.endfor
.for i in ${MFILES}
ln -sf machine/$i ${DESTDIR}/usr/include/$i
.endfor
.for i in ${PFILES}
ln -sf posix4/$i ${DESTDIR}/usr/include/$i
.endfor
.for i in ${SFILES} .for i in ${SFILES}
ln -sf ../sys/$i ${DESTDIR}/usr/include/machine/$i ln -sf ../sys/$i ${DESTDIR}/usr/include/machine/$i
.endfor .endfor
symlinks:
@${ECHO} "Setting up symlinks to kernel source tree..."
.for i in ${LDIRS} ${LNOHEADERDIRS}
rm -rf ${DESTDIR}/usr/include/$i
ln -s ../../sys/$i ${DESTDIR}/usr/include/$i
.endfor
rm -rf ${DESTDIR}/usr/include/machine
ln -s ../../sys/${MACHINE_ARCH}/include ${DESTDIR}/usr/include/machine
.include <bsd.prog.mk> .include <bsd.prog.mk>
+2 -16
View File
@@ -8,14 +8,10 @@ DDIR= ${DESTDIR}/usr/share/examples
NOOBJ= noobj NOOBJ= noobj
# Define SHARED to indicate whether you want symbolic links to the system
# source (``symlinks''), or a separate copy (``copies''); (latter useful
# in environments where it's not possible to keep /sys publicly readable)
SHARED?= copies
all clean cleandir depend lint tags: all clean cleandir depend lint tags:
beforeinstall: etc-examples ${SHARED} beforeinstall: copies
(cd ${.CURDIR}/../../etc; ${MAKE} etc-examples)
.for dir in ${DIRS} .for dir in ${DIRS}
FILES!= find -L ${dir} \( -name CVS -prune \) -o -type f -print FILES!= find -L ${dir} \( -name CVS -prune \) -o -type f -print
@@ -25,14 +21,4 @@ copies::
.endfor .endfor
.endfor .endfor
.for dir in ${DIRS}
symlinks::
rm -rf ${DDIR}/${dir}; ln -s ${.CURDIR}/${dir} ${DDIR}
.endfor
etc-examples:
.if ${SHARED} != "symlinks"
(cd ${.CURDIR}/../../etc; ${MAKE} etc-examples)
.endif
.include <bsd.prog.mk> .include <bsd.prog.mk>