1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-15 07:56:36 +00:00
freebsd-ports/devel/mprof/Makefile
Jordan K. Hubbard ac3066bf75 Add CATEGORIES lines to a whole bunch of port Makefiles. Some ports are in
multiple catagories - I'll expect the various MAINTAINERS to make further
adjustments (and add any KEYWORDS lines) themselves.
1995-04-01 12:51:41 +00:00

25 lines
772 B
Makefile

# New ports collection makefile for: mprof
# Version required: 3.0
# Date created: Sat Nov 5 01:16:33 PST 1994
# Whom: hsu
#
# $Id: Makefile,v 1.2 1994/11/22 09:16:22 hsu Exp $
#
DISTNAME= mprof-3.0
MASTER_SITES= ftp://cs.colorado.edu/pub/misc/
CATEGORIES+= development programming
EXTRACT_SUFX= .tar.Z
WRKSRC= ${WRKDIR}
MAKEFILE= Makefile.i386
install:
@if [ ! -e ${PREFIX}/bin ]; then mkdir -p ${PREFIX}/bin; fi
@if [ ! -e ${PREFIX}/lib ]; then mkdir -p ${PREFIX}/lib; fi
@if [ ! -e ${PREFIX}/man/man1 ]; then mkdir -p ${PREFIX}/man/man1; fi
install -c -m 555 ${WRKSRC}/mprof ${PREFIX}/bin
install -c -m 555 ${WRKSRC}/libc_mp.a ${PREFIX}/lib
install -c -m 555 ${WRKSRC}/mprof.1 ${PREFIX}/man/man1
.include <bsd.port.mk>