freebsd-dev/lib/compat/compat4x.alpha/Makefile
Paul Saab 3fa18367c2 Add libssl and libcrypto compat4x libraries since the major number
changed.  These were taken from the 4.2-RELEASE dist on ftp.freebsd.org.
This will be MFC'd shortly as it is required in RELENG_4 to maintain
compatability with binaries linked against these libraries.
2001-03-21 08:49:02 +00:00

40 lines
725 B
Makefile

# $FreeBSD$
DISTRIBUTION= compat4x
LIBCOMPATDIR= ${LIBDIR}/compat
LIBS= \
libc.so.4 \
libc_r.so.4 \
libcrypto.so.1 \
libdialog.so.4 \
libedit.so.3 \
libfetch.so.2 \
libftpio.so.5 \
libhistory.so.4 \
libncurses.so.5 \
libreadline.so.4 \
libssl.so.1 \
libstdc++.so.3 \
libutil.so.3 \
libwrap.so.3 \
libxpg4.so.3
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>