diff options
author | Vsevolod Stakhov <vsevolod@FreeBSD.org> | 2005-09-12 10:58:41 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@FreeBSD.org> | 2005-09-12 10:58:41 +0000 |
commit | d285f0f10135d59e30ee6ed71be23b37ed486ec5 (patch) | |
tree | 42381865cf7af661f0add1f3fdc9d6f64e435969 /math/aamath/files/patch-Makefile | |
parent | Update to 0.5. (diff) |
Enable readline support.
PR: 85793
Submitted by: Nicola Vitale <nivit@email.it>
Notes
Notes:
svn path=/head/; revision=142520
Diffstat (limited to 'math/aamath/files/patch-Makefile')
-rw-r--r-- | math/aamath/files/patch-Makefile | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/math/aamath/files/patch-Makefile b/math/aamath/files/patch-Makefile index 8c178c8fdd50..a3476d1e8e37 100644 --- a/math/aamath/files/patch-Makefile +++ b/math/aamath/files/patch-Makefile @@ -1,14 +1,17 @@ ---- Makefile.orig Thu Jun 23 00:12:18 2005 -+++ Makefile Thu Jun 23 15:08:04 2005 -@@ -3,7 +3,7 @@ +--- Makefile Wed Jun 22 22:12:18 2005 ++++ Makefile.port Tue Sep 6 13:29:09 2005 +@@ -3,9 +3,9 @@ CXXFILES = parser.cc lexer.cc expr.cc canvas.cc aamath.cc OBJS = $(CXXFILES:.cc=.o) TARGET = aamath -CFLAGS = -Wall -O2 -g -DUSE_READLINE -+CFLAGS ?= -Wall -O2 -g -DUSE_READLINE ++CFLAGS += -Wall -g -DUSE_READLINE LFLAGS = -g - LIBS = -lreadline -ltermcap +-LIBS = -lreadline -ltermcap ++LIBS = $(LDFLAGS) -ltermcap + $(TARGET): $(OBJS) + $(LD) $(LFLAGS) $(OBJS) -o $@ $(LIBS) @@ -21,3 +21,5 @@ clean: |