diff options
author | Javier Martinez Canillas <javier@dowhile0.org> | 2013-08-14 01:37:16 -0700 |
---|---|---|
committer | Javier Martinez Canillas <javier@dowhile0.org> | 2013-08-14 01:37:16 -0700 |
commit | 4511f805fd53dba5b6dc6b6fa0d28c82e3482b39 (patch) | |
tree | dbd6bc49c61d5116e81aa62a1ee40fda28337ece /scull/Makefile | |
parent | 6aae03d4a7d97ebb2e1ef48e71a20a48aa7655ca (diff) | |
parent | cbfbcb953aa0f1d004f3bce5d8c83400cbfbdc7c (diff) | |
download | ldd3-4511f805fd53dba5b6dc6b6fa0d28c82e3482b39.tar.gz |
Merge pull request #3 from luiorpe1/scull-3.10
Scull updated for 3.10
Diffstat (limited to 'scull/Makefile')
-rw-r--r-- | scull/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scull/Makefile b/scull/Makefile index ac6383a..34b90e9 100644 --- a/scull/Makefile +++ b/scull/Makefile @@ -9,6 +9,8 @@ else DEBFLAGS = -O2 endif +LDDINC=$(PWD)/../include + EXTRA_CFLAGS += $(DEBFLAGS) EXTRA_CFLAGS += -I$(LDDINC) @@ -25,7 +27,7 @@ KERNELDIR ?= /lib/modules/$(shell uname -r)/build PWD := $(shell pwd) modules: - $(MAKE) -C $(KERNELDIR) M=$(PWD) LDDINC=$(PWD)/../include modules + $(MAKE) -C $(KERNELDIR) M=$(PWD) modules endif |