diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-06-04 18:40:21 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-06-04 18:40:21 +0000 |
commit | 24b3787e03875740f6ad30d3a611232a138495d3 (patch) | |
tree | 3e800cf7023984f832d971e3c4ddae93cde153d7 /math/eukleides/files | |
parent | d1eb5fca09a091931c00f89f00019462ab97a4d2 (diff) | |
download | ports-24b3787e03875740f6ad30d3a611232a138495d3.tar.gz ports-24b3787e03875740f6ad30d3a611232a138495d3.zip |
Notes
Diffstat (limited to 'math/eukleides/files')
-rw-r--r-- | math/eukleides/files/patch-Makefile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/math/eukleides/files/patch-Makefile b/math/eukleides/files/patch-Makefile new file mode 100644 index 000000000000..7bf3c1298744 --- /dev/null +++ b/math/eukleides/files/patch-Makefile @@ -0,0 +1,22 @@ +--- Makefile.orig Wed Jun 5 01:38:47 2002 ++++ Makefile Wed Jun 5 01:41:39 2002 +@@ -1,14 +1,14 @@ + # Eukleides 0.9.0 makefile + # Copyright (c) Christian Obrecht 2000-2002 + +-CC = gcc +-CFLAGS = -c -O2 ++#CC = gcc ++CFLAGS += -c + OBJECTS = lex.yy.o parser.tab.o main.o geometry.o drawing.o + LEX = flex + YACC = bison -d +-BIN = /usr/local/bin/ +-MAN = /usr/man/man1/ +-INFO = /usr/info/ ++BIN = ${PREFIX}/bin/ ++MAN = ${PREFIX}/man/man1/ ++INFO = ${PREFIX}/info/ + PAPER = --texinfo=@afourpaper + DOC = eukleides.info eukleides.dvi eukleides.ps + |