blob: e42bfdaab5b0a53a0b41233e3eb63bc5e84c8d36 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--- Makefile.orig Fri Jan 16 11:22:34 2004
+++ Makefile Fri Jan 16 11:27:47 2004
@@ -13,7 +13,7 @@
SOURCE_SUFFIX = c
# C compiler
-CC = gcc
+CC ?= gcc
# source files directory
srcdir = .
@@ -28,7 +28,7 @@
LNK_LIBS = -lm
# other compilation options (no value if unsure)
-COMPILE_OPTS =
+COMPILE_OPTS = ${CFLAGS}
# basic compiler warning options (for GOAL_EXE)
BWARN_OPTS = -Wall -Wno-uninitialized -ansi -pedantic
|