diff options
author | Javier Martinez Canillas <martinez.javier@gmail.com> | 2010-12-05 02:02:12 +0100 |
---|---|---|
committer | Javier Martinez Canillas <martinez.javier@gmail.com> | 2010-12-05 02:02:12 +0100 |
commit | 35a5c57165a5d4149b1cbb478a3965d6f944f088 (patch) | |
tree | 7565407da7742a77da70c19abf2a9e1ff418cbca | |
parent | 0d9300269098773ccd15ee66cf881b34ff5d9f12 (diff) | |
download | ldd3-35a5c57165a5d4149b1cbb478a3965d6f944f088.tar.gz |
scullv: Makefile: Change CFLAGS to EXTRA_CFLAGS
-rw-r--r-- | scullv/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scullv/Makefile b/scullv/Makefile index 6dea81f..dd71bb0 100644 --- a/scullv/Makefile +++ b/scullv/Makefile @@ -9,7 +9,7 @@ else DEBFLAGS = -O2 endif -CFLAGS += $(DEBFLAGS) -I$(LDDINC) +EXTRA_CFLAGS += $(DEBFLAGS) -I$(LDDINC) TARGET = scullv @@ -39,7 +39,7 @@ clean: depend .depend dep: - $(CC) $(CFLAGS) -M *.c > .depend + $(CC) $(EXTRA_CFLAGS) -M *.c > .depend ifeq (.depend,$(wildcard .depend)) include .depend |