diff options
author | Javier Martinez Canillas <martinez.javier@gmail.com> | 2010-11-28 01:45:27 +0100 |
---|---|---|
committer | Javier Martinez Canillas <martinez.javier@gmail.com> | 2010-11-28 01:45:27 +0100 |
commit | 6c453cf1d11967a46301c4a2b126f8a4d8ac8e3b (patch) | |
tree | 50551972d53a267817033fab45ef0f1dcf5a9228 | |
parent | a224bc02caf01b7d47cb1de9e994561c6e915e64 (diff) | |
download | ldd3-6c453cf1d11967a46301c4a2b126f8a4d8ac8e3b.tar.gz |
scullc: Makefile: Change CFLAGS to EXTRA_CFLAGS
-rw-r--r-- | scullc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scullc/Makefile b/scullc/Makefile index 9b90b41..7c13241 100644 --- a/scullc/Makefile +++ b/scullc/Makefile @@ -9,7 +9,7 @@ else DEBFLAGS = -O2 endif -CFLAGS += $(DEBFLAGS) -I$(LDDINC) +EXTRA_CFLAGS += $(DEBFLAGS) -I$(LDDINC) TARGET = scullc @@ -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 |