freebsd-dev/gnu/usr.bin/perl/x2p/Makefile
Gary Clark II 25ea820e44 Added CURDIR directives for some installs.
Reviewed by: Gary Clark II
Submitted by: Rod Grimes
1994-09-11 19:53:02 +00:00

19 lines
350 B
Makefile

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 ${BINDIR}
install -c -o ${BINOWN} -g ${BINGRP} -m 555 ${.CURDIR}/h2ph ${BINDIR}
.include <bsd.prog.mk>
.include "../../Makefile.inc"