diff options
Diffstat (limited to 'scullp/Makefile')
-rw-r--r-- | scullp/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scullp/Makefile b/scullp/Makefile index f302570..069c515 100644 --- a/scullp/Makefile +++ b/scullp/Makefile @@ -9,6 +9,7 @@ else DEBFLAGS = -O2 endif +LDDINC=$(PWD) EXTRA_CFLAGS += $(DEBFLAGS) -I$(LDDINC) TARGET = scullp @@ -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 |