mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-05 22:43:24 +00:00
991f221b08
gcc -O2 -o ../cs globals.o code0.o code1.o code2.o code3.o code4.o code5.o code6.o code7.o code8.o code9.o code10.o ../../System/base.a ../../System/GC/gc.a -lm gcc: ../../System/GC/gc.a: No such file or directory *** Error code 1
40 lines
1.2 KiB
Makefile
40 lines
1.2 KiB
Makefile
# New ports collection makefile for: Sather
|
|
# Version required: 1.0.5
|
|
# Date created: Mon Oct 31 22:04:12 PST 1994
|
|
# Whom: hsu
|
|
#
|
|
# $Id: Makefile,v 1.14 1996/11/25 03:49:08 obrien Exp $
|
|
#
|
|
|
|
DISTNAME= Sather-1.0.5
|
|
PKGNAME= sather-1.0.5
|
|
CATEGORIES= lang
|
|
MASTER_SITES= ftp://ftp.icsi.berkeley.edu/pub/sather/ \
|
|
ftp://ftp.sterling.com/programming/languages/sather/ \
|
|
ftp://ftp.uni-muenster.de/pub/languages/sather/ \
|
|
ftp://ftp.nis.co.jp/pub/lang/sather/ \
|
|
ftp://ftp.th-darmstadt.de/pub/programming/languages/sather/ \
|
|
ftp://ftp.sra.co.jp/pub/lang/sather/ \
|
|
ftp://ftp.infomagic.com/pub/mirrors/.mirror14/languages/sather/
|
|
|
|
MAINTAINER= obrien@FreeBSD.org
|
|
|
|
BROKEN_ELF= gcc: ../../System/GC/gc.a: No such file or directory
|
|
|
|
WRKSRC= ${WRKDIR}/Sather
|
|
ALL_TARGET= testall
|
|
MAN1= cs.1
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/Compiler/cs ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/Doc/man/man1/cs.1 ${PREFIX}/man/man1
|
|
${MKDIR} ${PREFIX}/share/doc/sather
|
|
${INSTALL_DATA} ${WRKSRC}/Doc/License ${PREFIX}/share/doc/sather
|
|
.if !defined(NOPORTDOCS)
|
|
.for file in Bugs Changes Contributing FAQ README manual.ps
|
|
${INSTALL_DATA} ${WRKSRC}/Doc/${file} ${PREFIX}/share/doc/sather
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|