summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJavier Martinez Canillas <martinez.javier@gmail.com>2010-12-05 02:05:41 +0100
committerJavier Martinez Canillas <martinez.javier@gmail.com>2010-12-05 02:05:41 +0100
commitcce0cc935b09d0ca366a0db2b01d0838b0d8b558 (patch)
tree1c3e8888fe42a9cda16f2a8866020ba8e27dce55
parent1a075a696ee970bcb75fdd1c59abdaf3602519f8 (diff)
downloadldd3-cce0cc935b09d0ca366a0db2b01d0838b0d8b558.tar.gz
tty: Makefile: Change CFLAGS to EXTRA_CFLAGS
-rw-r--r--tty/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/tty/Makefile b/tty/Makefile
index f5b8592..637dfbd 100644
--- a/tty/Makefile
+++ b/tty/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))