1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-27 21:29:02 +00:00
freebsd-ports/math/gexpr/files/patch-Makefile
Ying-Chieh Liao a69120c56a add gexpr
A shell calculator
2001-06-13 21:45:12 +00:00

17 lines
386 B
Plaintext

--- Makefile.orig Thu Jun 14 05:36:02 2001
+++ Makefile Thu Jun 14 05:39:22 2001
@@ -1,11 +1,10 @@
# Makefile for gexpr
# Last updated: 10 February 1999
-CC = gcc
-OPTS = -s -O2 -Wall
+OPTS = ${CFLAGS} -I%%LOCALBASE%%/include
OBJS = eval.o read_token.o commands.o output.o errors.o gexpr.o
GEXPR = gexpr
-LIBS = -lm
+LIBS = -lm -L%%LOCALBASE%%/lib -lgnugetopt
all: $(GEXPR)