diff options
author | Javier Martinez Canillas <martinez.javier@gmail.com> | 2010-12-05 02:00:11 +0100 |
---|---|---|
committer | Javier Martinez Canillas <martinez.javier@gmail.com> | 2010-12-05 02:00:11 +0100 |
commit | cb252fba68f70632461ed47b7ca413c6f3de5f37 (patch) | |
tree | 66bf48369a3da88567b98b97a6f6f0e24ad5dd8c /snull | |
parent | c88fde800e721f962957a1eda8251becfdd6a104 (diff) | |
download | ldd3-cb252fba68f70632461ed47b7ca413c6f3de5f37.tar.gz |
snull: Makefile: Change CFLAGS to EXTRA_CFLAGS
Diffstat (limited to 'snull')
-rw-r--r-- | snull/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/snull/Makefile b/snull/Makefile index 17949c1..179dbd0 100644 --- a/snull/Makefile +++ b/snull/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)) |