summaryrefslogtreecommitdiffstats
path: root/sculld/Makefile
diff options
context:
space:
mode:
authorJavier Martinez Canillas <martinez.javier@gmail.com>2010-11-28 03:55:45 +0100
committerJavier Martinez Canillas <martinez.javier@gmail.com>2010-11-28 03:55:45 +0100
commit766d427ae655ad3fca9f46ab3de9bb5d8cff106f (patch)
tree1037a1f0b786c854649d899d573717cb54e36734 /sculld/Makefile
parentf0c09c6e5adbf9c35c49dc02594fcfaa64a42994 (diff)
downloadldd3-766d427ae655ad3fca9f46ab3de9bb5d8cff106f.tar.gz
sculld: Makefile: Change CFLAGS to EXTRA_CFLAGS
Diffstat (limited to 'sculld/Makefile')
-rw-r--r--sculld/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/sculld/Makefile b/sculld/Makefile
index 29e9fc3..41a7f9b 100644
--- a/sculld/Makefile
+++ b/sculld/Makefile
@@ -9,7 +9,7 @@ else
DEBFLAGS = -O2
endif
-CFLAGS += $(DEBFLAGS) -I$(LDDINC)
+EXTRA_CFLAGS += $(DEBFLAGS) -I$(LDDINC)
TARGET = sculld
@@ -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