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

24 lines
475 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
afterinstall:
-mkdir -p ${DESTDIR}/usr/share/perl/sys
cd ${DESTDIR}/usr/include ; h2ph * sys/*
.include "../../Makefile.inc"
.include <bsd.prog.mk>