opnsense-src/gnu/usr.bin/perl/x2p/Makefile
Bruce Evans 36c1af94e2 Use the installed version of perl for `make install'. It is now
bootstrapped by `make world'.  The version just built in ".."
normally won't work if the target system is not binary compatible.
1998-07-07 23:44:43 +00:00

25 lines
560 B
Makefile

# $Id: Makefile,v 1.14 1998/05/12 23:02:14 jb Exp $
PROG= a2p
SRCS= a2p.y hash.c str.c walk.c util.c
CFLAGS+= -I${.CURDIR}/../perl
YFLAGS=
LDADD= -lm
DPADD= ${LIBM}
MAN1+= a2p.1 s2p.1 h2ph.1
beforeinstall:
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 555 ${.CURDIR}/s2p \
${DESTDIR}${BINDIR}
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 555 ${.CURDIR}/h2ph \
${DESTDIR}${BINDIR}
afterinstall:
(DESTDIR=${DESTDIR}; cd ${DESTDIR}/usr/include; \
perl ${DESTDIR}${BINDIR}/h2ph * machine/* sys/*)
.include "../../Makefile.inc"
.include <bsd.prog.mk>