summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJavier Martinez Canillas <martinez.javier@gmail.com>2010-12-05 01:56:13 +0100
committerJavier Martinez Canillas <martinez.javier@gmail.com>2010-12-05 01:56:13 +0100
commit7d1f1f73b32f7001f938396be52dd9d2bf8544ad (patch)
tree81b38ba0a8c40335a78dc45ae73545e7532aa83c
parentc07ea7d6d41bd1378417297550e04ed23cffef04 (diff)
downloadldd3-7d1f1f73b32f7001f938396be52dd9d2bf8544ad.tar.gz
scullp: Makefile: Change CFLAGS to EXTRA_CFLAGS
-rw-r--r--scullp/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/scullp/Makefile b/scullp/Makefile
index 2a74203..f302570 100644
--- a/scullp/Makefile
+++ b/scullp/Makefile
@@ -9,7 +9,7 @@ else
DEBFLAGS = -O2
endif
-CFLAGS += $(DEBFLAGS) -I$(LDDINC)
+EXTRA_CFLAGS += $(DEBFLAGS) -I$(LDDINC)
TARGET = scullp
@@ -39,7 +39,7 @@ clean:
depend .depend dep:
- $(CC) $(CFLAGS) -M *.c > .depend
+ $(CC) $(EXTRA_CFLAGS) -M *.c > .depend
ifeq (.depend,$(wildcard .depend))
include .depend