summaryrefslogtreecommitdiff
path: root/archivers/9e/files/patch-aa
diff options
context:
space:
mode:
authorVolker Stolz <vs@FreeBSD.org>2005-04-19 08:25:09 +0000
committerVolker Stolz <vs@FreeBSD.org>2005-04-19 08:25:09 +0000
commit23c13a940f7aa398d615a34bdbca5d1b00f19938 (patch)
tree3afa64b91d2783706cfc95185367f01d34b579bb /archivers/9e/files/patch-aa
parentUpdate to 0.3100 (diff)
Use MAKE_ARGS instead of Makefile-patch
Notes
Notes: svn path=/head/; revision=133638
Diffstat (limited to '')
-rw-r--r--archivers/9e/files/patch-aa35
1 files changed, 0 insertions, 35 deletions
diff --git a/archivers/9e/files/patch-aa b/archivers/9e/files/patch-aa
deleted file mode 100644
index e85b1648bdd3..000000000000
--- a/archivers/9e/files/patch-aa
+++ /dev/null
@@ -1,35 +0,0 @@
---- 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 -pipe
-
- .PHONY: all clean distclean
-
--LIBS = -lefence
--
--HDRS = 9a.h
- SRCS = 9e.c
- OBJS = 9e.o
-
-@@ -17,7 +14,7 @@
- all: $(BINARIES)
-
- 9e: $(OBJS)
-- $(CC) -o 9e 9e.o $(LIBS)
-+ $(CC) -o 9e 9e.o
-
- clean:
- rm -f *.o *~ a.out
-@@ -26,4 +23,4 @@
- distclean: clean
- rm -f ${BINARIES}
-
--# EOF
-\ No newline at end of file
-+# EOF