summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJavier Martinez Canillas <martinez.javier@gmail.com>2010-12-07 00:34:18 +0100
committerJavier Martinez Canillas <martinez.javier@gmail.com>2010-12-07 00:34:18 +0100
commit9042277969e99ffa2cb7793df16a736edf4867eb (patch)
treeab1a973256e622d38bbd20d590b62a30ee72373e
parentbca2bf1d1d28deee3bef691371d9aae2cbbb0f4b (diff)
downloadldd3-9042277969e99ffa2cb7793df16a736edf4867eb.tar.gz
sbull: Makefile: Change CFLAGS to EXTRA_CFLAGS
-rw-r--r--sbull/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/sbull/Makefile b/sbull/Makefile
index 5bb807c..2255db5 100644
--- a/sbull/Makefile
+++ b/sbull/Makefile
@@ -9,8 +9,8 @@ else
DEBFLAGS = -O2
endif
-CFLAGS += $(DEBFLAGS)
-CFLAGS += -I..
+EXTRA_CFLAGS += $(DEBFLAGS)
+EXTRA_CFLAGS += -I..
ifneq ($(KERNELRELEASE),)
# call from kernel build system
@@ -33,7 +33,7 @@ clean:
rm -rf *.o *~ core .depend .*.cmd *.ko *.mod.c .tmp_versions
depend .depend dep:
- $(CC) $(CFLAGS) -M *.c > .depend
+ $(CC) $(EXTRA_CFLAGS) -M *.c > .depend
ifeq (.depend,$(wildcard .depend))