summaryrefslogtreecommitdiff
path: root/archivers/9e
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2003-10-19 08:14:20 +0000
committerKris Kennaway <kris@FreeBSD.org>2003-10-19 08:14:20 +0000
commit9651aa8e3606bc2d7870b52ed056a8ef3842bd6c (patch)
tree6830894c5ab7a09fc98e54607d75d0762acadcb7 /archivers/9e
parentAdd the virtual category elisp. (diff)
Respect CC and CFLAGS
Notes
Notes: svn path=/head/; revision=91624
Diffstat (limited to 'archivers/9e')
-rw-r--r--archivers/9e/files/patch-aa20
1 files changed, 14 insertions, 6 deletions
diff --git a/archivers/9e/files/patch-aa b/archivers/9e/files/patch-aa
index 9ad57eedccf3..e85b1648bdd3 100644
--- a/archivers/9e/files/patch-aa
+++ b/archivers/9e/files/patch-aa
@@ -1,12 +1,13 @@
---- Makefile.orig Thu Jun 22 18:59:41 2000
-+++ Makefile Thu Jun 22 19:04:02 2000
-@@ -1,14 +1,9 @@
+--- Makefile.orig Thu Jun 15 06:40:52 2000
++++ Makefile Sun Oct 19 01:13:32 2003
+@@ -1,14 +1,11 @@
# Makefile for 9e
-CC = gcc
--
++CC ?= cc
+
-CFLAGS = -g3 -ggdb
-+CFLAGS = -O
++CFLAGS ?= -O -pipe
.PHONY: all clean distclean
@@ -16,7 +17,7 @@
SRCS = 9e.c
OBJS = 9e.o
-@@ -17,7 +12,7 @@
+@@ -17,7 +14,7 @@
all: $(BINARIES)
9e: $(OBJS)
@@ -25,3 +26,10 @@
clean:
rm -f *.o *~ a.out
+@@ -26,4 +23,4 @@
+ distclean: clean
+ rm -f ${BINARIES}
+
+-# EOF
+\ No newline at end of file
++# EOF