freebsd-dev/gnu/usr.bin/perl/x2p/Makefile

24 lines
506 B
Makefile
Raw Normal View History

1994-09-10 06:27:55 +00:00
PROG= a2p
SRCS+= a2p.c hash.c str.c walk.c util.c
CFLAGS+= -I${.CURDIR}/../perl
CLEANFILES+= y.tab.h a2p.c
1994-09-10 06:27:55 +00:00
LDADD= -lm
DPADD= ${LIBM}
1995-05-30 05:05:38 +00:00
MAN1+= a2p.1 s2p.1 h2ph.1
1994-09-10 06:27:55 +00:00
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}
1994-09-10 06:27:55 +00:00
afterinstall:
(DESTDIR=${DESTDIR}; cd ${DESTDIR}/usr/include; ${BINDIR}/h2ph * machine/* sys/*)
.include "../../Makefile.inc"
.include <bsd.prog.mk>