diff options
-rw-r--r-- | sculld/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sculld/Makefile b/sculld/Makefile index 41a7f9b..2126308 100644 --- a/sculld/Makefile +++ b/sculld/Makefile @@ -9,6 +9,7 @@ else DEBFLAGS = -O2 endif +LDDINC=$(PWD) EXTRA_CFLAGS += $(DEBFLAGS) -I$(LDDINC) TARGET = sculld @@ -25,7 +26,7 @@ KERNELDIR ?= /lib/modules/$(shell uname -r)/build PWD := $(shell pwd) modules: - $(MAKE) -C $(KERNELDIR) M=$(PWD) LDDINC=$(PWD) modules + $(MAKE) -C $(KERNELDIR) M=$(PWD) modules endif |