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

20 lines
377 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
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}
1994-09-10 06:27:55 +00:00
.include "../../Makefile.inc"
.include <bsd.prog.mk>