summaryrefslogtreecommitdiff
path: root/math/aamath/files/patch-Makefile
diff options
context:
space:
mode:
authorSergey Matveychuk <sem@FreeBSD.org>2005-06-23 11:53:28 +0000
committerSergey Matveychuk <sem@FreeBSD.org>2005-06-23 11:53:28 +0000
commit05c86adb6a705497d09493b85ef3a1661e8ca781 (patch)
tree83dd4850248d3139160a5417462b6171966bd66b /math/aamath/files/patch-Makefile
parentUpdate to 20050616 snapshot. (diff)
Aamath is a program that reads mathematical expressions in infix notation and
renders them as ASCII art. It may be useful to send mathematics through text-only media, such as e-mail or newsgroups. PR: ports/82552 Submitted by: Vsevolod Stakhov <vsevolod@highsecure.ru>
Notes
Notes: svn path=/head/; revision=137923
Diffstat (limited to 'math/aamath/files/patch-Makefile')
-rw-r--r--math/aamath/files/patch-Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/math/aamath/files/patch-Makefile b/math/aamath/files/patch-Makefile
new file mode 100644
index 000000000000..8c178c8fdd50
--- /dev/null
+++ b/math/aamath/files/patch-Makefile
@@ -0,0 +1,17 @@
+--- Makefile.orig Thu Jun 23 00:12:18 2005
++++ Makefile Thu Jun 23 15:08:04 2005
+@@ -3,7 +3,7 @@
+ 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
+ LFLAGS = -g
+ LIBS = -lreadline -ltermcap
+
+@@ -21,3 +21,5 @@
+
+ clean:
+ rm -f *.o lexer.cc parser.h parser.cc $(TARGET)
++
++all: $(TARGET)