diff options
author | Javier Martinez Canillas <martinez.javier@gmail.com> | 2010-12-05 01:56:13 +0100 |
---|---|---|
committer | Javier Martinez Canillas <martinez.javier@gmail.com> | 2010-12-05 01:56:13 +0100 |
commit | 7d1f1f73b32f7001f938396be52dd9d2bf8544ad (patch) | |
tree | 81b38ba0a8c40335a78dc45ae73545e7532aa83c | |
parent | c07ea7d6d41bd1378417297550e04ed23cffef04 (diff) | |
download | ldd3-7d1f1f73b32f7001f938396be52dd9d2bf8544ad.tar.gz |
scullp: Makefile: Change CFLAGS to EXTRA_CFLAGS
-rw-r--r-- | scullp/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scullp/Makefile b/scullp/Makefile index 2a74203..f302570 100644 --- a/scullp/Makefile +++ b/scullp/Makefile @@ -9,7 +9,7 @@ else DEBFLAGS = -O2 endif -CFLAGS += $(DEBFLAGS) -I$(LDDINC) +EXTRA_CFLAGS += $(DEBFLAGS) -I$(LDDINC) TARGET = scullp @@ -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 |