diff options
author | Javier Martinez Canillas <martinez.javier@gmail.com> | 2010-12-05 01:58:17 +0100 |
---|---|---|
committer | Javier Martinez Canillas <martinez.javier@gmail.com> | 2010-12-05 01:58:17 +0100 |
commit | b0008de14dd3a141a809dd88d28c86cfcdbe8333 (patch) | |
tree | 960e4da8f9f054f3c756803d66e4304288c6e062 | |
parent | 7db8b5c0193134fd8e84e648589b191437c5991c (diff) | |
download | ldd3-b0008de14dd3a141a809dd88d28c86cfcdbe8333.tar.gz |
short: Makefile: Change CFLAGS to EXTRACFLAGS
-rw-r--r-- | short/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/short/Makefile b/short/Makefile index 1655b3f..678b4e9 100644 --- a/short/Makefile +++ b/short/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 @@ -32,7 +32,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)) |