diff options
author | Javier Martinez Canillas <martinez.javier@gmail.com> | 2010-12-05 14:59:56 +0100 |
---|---|---|
committer | Javier Martinez Canillas <martinez.javier@gmail.com> | 2010-12-05 14:59:56 +0100 |
commit | a94a4998e89b6a2ffd0af0267545fefb0a32168f (patch) | |
tree | f2eca83d8c03758a3361fea91e61cb53fb24954e | |
parent | 029ee57b6a41318ddc757a6b63e101cbcdd9cfb5 (diff) | |
download | ldd3-a94a4998e89b6a2ffd0af0267545fefb0a32168f.tar.gz |
lddbus: Makefile: Change CFLAGS to EXTRA_CFLAGS
-rw-r--r-- | lddbus/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lddbus/Makefile b/lddbus/Makefile index 1a3ab78..98d4cc9 100644 --- a/lddbus/Makefile +++ b/lddbus/Makefile @@ -7,7 +7,7 @@ ifeq ($(DEBUG),y) else DEBFLAGS = -O2 endif -CFLAGS += $(DEBFLAGS) -I$(LDDINCDIR) +EXTRA_CFLAGS += $(DEBFLAGS) -I$(LDDINCDIR) ifneq ($(KERNELRELEASE),) @@ -31,7 +31,7 @@ clean: rm -rf *.o *.ko *~ core .depend *.mod.c .*.cmd .tmp_versions .*.o.d depend .depend dep: - $(CC) $(CFLAGS) -M *.c > .depend + $(CC) $(EXTRA_CFLAGS) -M *.c > .depend ifeq (.depend,$(wildcard .depend)) |