mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-13 06:23:45 -04:00
18 lines
416 B
Plaintext
18 lines
416 B
Plaintext
$NetBSD: patch-ab,v 1.1.1.1 2005/05/19 13:03:56 minskim Exp $
|
|
|
|
--- makefile.orig 1999-03-05 16:04:39.000000000 -0600
|
|
+++ makefile
|
|
@@ -2,9 +2,9 @@
|
|
# Collin D. Bevins, October 1996
|
|
|
|
# The following rules work for UnixWare 2.0.
|
|
-CC = cc
|
|
-CFLAGS = -g -DNDEBUG
|
|
-LIBS = -lm
|
|
+CC ?= cc
|
|
+CFLAGS ?= -g -DNDEBUG
|
|
+LIBS += -lm
|
|
|
|
fireSim: fireSim.o fireLib.o fireLib.h
|
|
$(CC) $(CFLAGS) fireSim.c fireLib.c -o fireSim $(LIBS)
|