1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-21 20:38:45 +00:00
freebsd-ports/devel/lemon/Makefile
Mikhail Teterin 53211d2b0d Make this into a more general tool. Allow to specify the names of the
output files and the location of the template on command line.

(Submitting the patches to the author)
2001-06-08 01:17:53 +00:00

34 lines
731 B
Makefile

# Ports collection makefile for: lemon
# Date created: June 4, 2001
# Whom: Mikhail Teterin
#
# $FreeBSD$
#
PORTNAME= lemon
PORTVERSION= 1.0
PORTREVISION= 1
CATEGORIES= devel
MASTER_SITES= http://www.hwaci.com/sw/lemon/
DISTFILES= lemon.c lempar.c
MAINTAINER= mi@aldan.algebra.com
NO_WRKSUBDIR= YES
do-extract:
${MKDIR} ${WRKSRC}
${CP} -p ${DISTDIR}/lemon.c ${WRKSRC}
do-build:
cd ${WRKSRC} && ${MAKE} VPATH=${DISTDIR} PROG=lemon NOMAN=1 \
CFLAGS="${CFLAGS} -DLEMPAR='\"${PREFIX}/share/lemon/lempar.c\"'" \
-f bsd.prog.mk
do-install:
${INSTALL_PROGRAM} ${WRKDIR}/${PORTNAME} ${PREFIX}/bin/
${MKDIR} ${PREFIX}/share/lemon
${INSTALL_DATA} ${DISTDIR}/lempar.c ${PREFIX}/share/lemon/
.include <bsd.port.mk>