ports/math/gexpr/files/patch-Makefile
FUJISHIMA Satsuki b185046be2 get rid of libgnugetopt dependency for -CURRENT,
use USE_GETOPT_LONG instead.
2003-07-14 02:53:03 +00:00

16 lines
353 B
Text

--- Makefile.orig Sat Feb 13 02:28:35 1999
+++ Makefile Sun Jul 6 20:06:03 2003
@@ -1,11 +1,10 @@
# Makefile for gexpr
# Last updated: 10 February 1999
-CC = gcc
-OPTS = -s -O2 -Wall
+OPTS = ${CFLAGS} ${CPPFLAGS}
OBJS = eval.o read_token.o commands.o output.o errors.o gexpr.o
GEXPR = gexpr
-LIBS = -lm
+LIBS = -lm ${LDFLAGS}
all: $(GEXPR)