diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-06-13 21:45:12 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-06-13 21:45:12 +0000 |
commit | a69120c56ad1ec496b1a3da743f2bc8df6a5af14 (patch) | |
tree | 38d9b496ffaccb51a98727e77b9b3cd49d8bfc1d /math/gexpr/files | |
parent | Ooops. Specify PATCHDIR so that these actually get patched properly. (diff) |
add gexpr
A shell calculator
Diffstat (limited to 'math/gexpr/files')
-rw-r--r-- | math/gexpr/files/patch-Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/math/gexpr/files/patch-Makefile b/math/gexpr/files/patch-Makefile new file mode 100644 index 000000000000..54f3d5c71b87 --- /dev/null +++ b/math/gexpr/files/patch-Makefile @@ -0,0 +1,16 @@ +--- 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) + |