f383120181
for a module overridden by BSDPAN instead of the original module. * Fix wrong manual section numbers in SEE ALSO. * Add `Revision 42' to the beer-ware license. The BSDPAN author did not originally get the reference and removed the revision from original phk's version. Submitted by: Anton Berezin <tobez@tobez.org>
19 lines
394 B
Makefile
19 lines
394 B
Makefile
# $FreeBSD$
|
|
#
|
|
# Doing a make install builds /usr/libdata/perl/BSDPAN
|
|
|
|
DDIR= ${DESTDIR}/usr/libdata/perl/BSDPAN
|
|
|
|
NOOBJ= noobj
|
|
|
|
all clean cleandir depend lint tags:
|
|
|
|
FILES= BSDPAN.pm BSDPAN/Override.pm Config.pm ExtUtils/MM_Unix.pm ExtUtils/Packlist.pm
|
|
|
|
.for file in ${FILES}
|
|
beforeinstall::
|
|
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 ${file} ${DDIR}/${file}
|
|
.endfor
|
|
|
|
.include <bsd.prog.mk>
|