diff options
-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 |