mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-08 20:07:50 -04:00
30 lines
446 B
Plaintext
30 lines
446 B
Plaintext
$NetBSD: patch-aa,v 1.1.1.1 2002/11/18 13:36:20 cjep Exp $
|
|
|
|
--- 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
|