mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
8202221baf
Quine-McClusky process simplification tool
28 lines
492 B
Makefile
28 lines
492 B
Makefile
# ex:ts=8
|
|
# New ports collection makefile for: qmc
|
|
# Date created: Nov 20, 2001
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= qmc
|
|
PORTVERSION= 0.92b3
|
|
CATEGORIES= misc
|
|
MASTER_SITES= http://www.pollaknet.at/qmc/program/
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION:S/b/bbeta/}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
|
|
NO_WRKSUBDIR= yes
|
|
|
|
do-build:
|
|
@(cd ${WRKSRC} ; \
|
|
${RM} -f *.o ; \
|
|
${CXX} ${CXXFLAGS} -I. *.cc -o qmc)
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/qmc ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|