diff options
-rw-r--r-- | sculld/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sculld/Makefile b/sculld/Makefile index 29e9fc3..41a7f9b 100644 --- a/sculld/Makefile +++ b/sculld/Makefile @@ -9,7 +9,7 @@ else DEBFLAGS = -O2 endif -CFLAGS += $(DEBFLAGS) -I$(LDDINC) +EXTRA_CFLAGS += $(DEBFLAGS) -I$(LDDINC) TARGET = sculld @@ -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 |