forked from Lainports/freebsd-ports
27 lines
386 B
Text
27 lines
386 B
Text
--- Makefile.orig Thu Jun 22 18:59:41 2000
|
|
+++ Makefile Thu Jun 22 19:04:02 2000
|
|
@@ -1,14 +1,9 @@
|
|
# Makefile for 9e
|
|
|
|
-CC = gcc
|
|
-
|
|
-CFLAGS = -g3 -ggdb
|
|
+CFLAGS = -O
|
|
|
|
.PHONY: all clean distclean
|
|
|
|
-LIBS = -lefence
|
|
-
|
|
-HDRS = 9a.h
|
|
SRCS = 9e.c
|
|
OBJS = 9e.o
|
|
|
|
@@ -17,7 +12,7 @@
|
|
all: $(BINARIES)
|
|
|
|
9e: $(OBJS)
|
|
- $(CC) -o 9e 9e.o $(LIBS)
|
|
+ $(CC) -o 9e 9e.o
|
|
|
|
clean:
|
|
rm -f *.o *~ a.out
|