2013-09-26 17:14:40 +02:00

20 lines
407 B
Plaintext

$NetBSD: patch-aa,v 1.1 2004/12/27 01:00:28 minskim Exp $
--- Makefile.orig 2004-12-24 10:46:49.000000000 -0600
+++ Makefile
@@ -1,12 +1,11 @@
-CFLAGS= -Werror -Wall -ansi
SRC= mdd.c sender.c receiver.c sniffer.c
OBJ= mdd.o sender.o receiver.o sniffer.o
-all: depend mdd
+all: mdd
mdd: ${OBJ}
- ${CC} -static -o $@ ${OBJ}
+ ${CC} ${CFLAGS} -static -o $@ ${OBJ}
depend:
mkdep ${CFLAGS} ${SRC}