From f5deda971481e64c19ad49adf681124ef1417273 Mon Sep 17 00:00:00 2001 From: "Suren A. Chilingaryan" Date: Wed, 6 Apr 2016 23:20:30 +0200 Subject: Further fixes for out-of-source compilation --- driver/Makefile.in | 8 ++++---- driver/base.c | 2 +- driver/ioctl.c | 2 +- driver/kmem.h | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) (limited to 'driver') diff --git a/driver/Makefile.in b/driver/Makefile.in index eea5a7b..2f5238a 100644 --- a/driver/Makefile.in +++ b/driver/Makefile.in @@ -10,8 +10,7 @@ MAININSTALLDIR ?= /lib/modules/$(KERNELVER)/kernel/extra HEADERDIR ?= /lib/modules/$(KERNELVER)/source/include PWD := $(shell pwd) -#EXTRA_CFLAGS += -I$(M)/.. -EXTRA_CFLAGS += -I${CMAKE_BINARY_DIR}/driver +EXTRA_CFLAGS += -I$(M)/.. ${PCILIB_DYNAMIC_HEADERS_INC} ifdef DUMMY_DEVICE ifneq ($(DUMMY_DEVICE), 0) @@ -19,6 +18,7 @@ ifneq ($(DUMMY_DEVICE), 0) endif endif +# Grepping in '../pcilib/build.h' is correct as we will always have this file in the releases... default: @KERNEL_GCC_VERSION=`cat /proc/version | head -n1 | cut -d " " -f 7` ;\ GCC_VERSION=`$(CC) --version | head -n 1 | tr ' ' '\n' | grep -e "[0-9]\+\.[0-9]" | tail -n 1` ;\ @@ -65,10 +65,10 @@ default: grep "#define PCILIB_RELEASE" ../pcilib/build.h &> /dev/null ;\ if [ $$? -eq 0 ]; then \ revision="Release \" PCILIB_RELEASE \" (r\" PCILIB_REVISION \") from \" PCILIB_REVISION_BRANCH \" by \" PCILIB_REVISION_AUTHOR \" at $$build_path, last modification from $$build_lastmod" ;\ - /bin/echo -e "#include \"../pcilib/build.h\"\\n#define PCIDRIVER_BUILD \"$$build\"\\n#define PCIDRIVER_REVISION \"$$revision\"\\n#define PCIDRIVER_CHANGES PCILIB_REVISION_MODIFICATIONS\n" > build.h ;\ + /bin/echo -e "#include \"pcilib/build.h\"\\n#define PCIDRIVER_BUILD \"$$build\"\\n#define PCIDRIVER_REVISION \"$$revision\"\\n#define PCIDRIVER_CHANGES PCILIB_REVISION_MODIFICATIONS\n" > build.h ;\ else \ revision="Revision r\" PCILIB_REVISION \" from \" PCILIB_REVISION_BRANCH \" by \" PCILIB_REVISION_AUTHOR \" at $$build_path, last modification from $$build_lastmod" ;\ - /bin/echo -e "#include \"../pcilib/build.h\"\\n#define PCIDRIVER_BUILD \"$$build\"\\n#define PCIDRIVER_REVISION \"$$revision\"\\n#define PCIDRIVER_CHANGES PCILIB_REVISION_MODIFICATIONS\n" > build.h ;\ + /bin/echo -e "#include \"pcilib/build.h\"\\n#define PCIDRIVER_BUILD \"$$build\"\\n#define PCIDRIVER_REVISION \"$$revision\"\\n#define PCIDRIVER_CHANGES PCILIB_REVISION_MODIFICATIONS\n" > build.h ;\ fi ;\ fi ;\ $(MAKE) $(CFLAGS) -C $(KERNELDIR) M=$(PWD) CC=$$CC modules diff --git a/driver/base.c b/driver/base.c index 5c874a8..3cd42b8 100644 --- a/driver/base.c +++ b/driver/base.c @@ -19,7 +19,7 @@ #include #include -#include "../pcilib/version.h" +#include "pcilib/version.h" #include "build.h" #include "base.h" diff --git a/driver/ioctl.c b/driver/ioctl.c index c75dd3a..dd7c7a3 100644 --- a/driver/ioctl.c +++ b/driver/ioctl.c @@ -30,7 +30,7 @@ #include #include -#include "../pcilib/version.h" +#include "pcilib/version.h" #include "base.h" diff --git a/driver/kmem.h b/driver/kmem.h index e793bd6..55ba417 100644 --- a/driver/kmem.h +++ b/driver/kmem.h @@ -3,7 +3,7 @@ #include -#include "../pcilib/kmem.h" +#include "pcilib/kmem.h" #include "ioctl.h" /* Define an entry in the kmem list (this list is per device) */ -- cgit v1.2.3