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