mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 09:48:00 -04:00
20 lines
407 B
Plaintext
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}
|