diff options
Diffstat (limited to 'short/Makefile')
-rw-r--r-- | short/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/short/Makefile b/short/Makefile index 1655b3f..678b4e9 100644 --- a/short/Makefile +++ b/short/Makefile @@ -9,8 +9,8 @@ else DEBFLAGS = -O2 endif -CFLAGS += $(DEBFLAGS) -CFLAGS += -I.. +EXTRA_CFLAGS += $(DEBFLAGS) +EXTRA_CFLAGS += -I.. ifneq ($(KERNELRELEASE),) # call from kernel build system @@ -32,7 +32,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)) |