diff options
-rw-r--r-- | shortprint/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shortprint/Makefile b/shortprint/Makefile index 42a9b53..313cc17 100644 --- a/shortprint/Makefile +++ b/shortprint/Makefile @@ -1,7 +1,7 @@ # Comment/uncomment the following line to disable/enable debugging #DEBUG = y -CFLAGS += -O2 -I.. +EXTRA_CFLAGS += -O2 -I.. ifneq ($(KERNELRELEASE),) # call from kernel build system @@ -23,7 +23,7 @@ clean: rm -rf *.o *~ core .depend .*.cmd *.ko *.mod.c .tmp_versions depend .depend dep: - $(CC) $(CFLAGS) -M *.c > .depend + $(CC) $(EXTRA_CFLAGS) -M *.c > .depend ifeq (.depend,$(wildcard .depend)) |