1999-08-28 00:22:10 +00:00
|
|
|
# $FreeBSD$
|
1999-04-20 11:32:10 +00:00
|
|
|
|
|
|
|
DISTRIBUTION= compat3x
|
|
|
|
|
|
|
|
LIBCOMPATDIR= ${LIBDIR}/compat
|
|
|
|
|
2001-02-10 06:44:18 +00:00
|
|
|
LIBS= libalias.so.3 libc.so.3 libc_r.so.3 libc_r.so.4 libcurses.so.2 \
|
|
|
|
libdialog.so.3 libedit.so.2 libf2c.so.2 libfetch.so.1 libftpio.so.4 \
|
|
|
|
libg++.so.4 libhistory.so.3 libmytinfo.so.2 libncurses.so.3 \
|
|
|
|
libperl.so.3 libreadline.so.3 libss.so.2 libstdc++.so.2 \
|
2001-02-10 06:41:59 +00:00
|
|
|
libtermcap.so.2 libutil.so.2 libvgl.so.1 libwrap.so.2 libxpg4.so.2
|
1999-04-20 11:32:10 +00:00
|
|
|
|
|
|
|
CLEANFILES+= ${LIBS}
|
|
|
|
|
|
|
|
all: ${LIBS}
|
|
|
|
|
|
|
|
.for lib in ${LIBS}
|
|
|
|
${lib}: ${lib}.gz.uu
|
|
|
|
uudecode -p ${.CURDIR}/${lib}.gz.uu | gunzip > ${lib}
|
|
|
|
.endfor
|
|
|
|
|
|
|
|
beforeinstall:
|
|
|
|
${INSTALL} ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} ${LIBS} \
|
|
|
|
${DESTDIR}${LIBCOMPATDIR}
|
|
|
|
|
|
|
|
# Get all the fruit, even though we don't set PROG.
|
|
|
|
# XXX bsd.lib.mk has fruitflies, e.g., it fails if LIBS is empty.
|
|
|
|
.include <bsd.prog.mk>
|