
Also ensure the driver still builds with the latest upstream kernel. Signed-off-by: Guenter Roeck <linux@roeck-us.net>
37 lines
919 B
Makefile
37 lines
919 B
Makefile
# For building for the current running version of Linux
|
|
TARGET := $(shell uname -r)
|
|
# Or specific version
|
|
#TARGET := 2.6.33.5
|
|
KERNEL_MODULES := /lib/modules/$(TARGET)
|
|
# KERNEL_BUILD := $(KERNEL_MODULES)/build
|
|
KERNEL_BUILD := /usr/src/linux-headers-$(TARGET)
|
|
|
|
#SYSTEM_MAP := $(KERNEL_BUILD)/System.map
|
|
SYSTEM_MAP := /boot/System.map-$(TARGET)
|
|
|
|
DRIVER := it87
|
|
|
|
# Directory below /lib/modules/$(TARGET)/kernel into which to install
|
|
# the module:
|
|
MOD_SUBDIR = drivers/hwmon
|
|
|
|
obj-m := $(patsubst %,%.o,$(DRIVER))
|
|
obj-ko := $(patsubst %,%.ko,$(DRIVER))
|
|
|
|
MAKEFLAGS += --no-print-directory
|
|
|
|
.PHONY: all install modules modules_install clean
|
|
|
|
all: modules
|
|
|
|
# Targets for running make directly in the external module directory:
|
|
|
|
modules clean:
|
|
@$(MAKE) -C $(KERNEL_BUILD) M=$(CURDIR) $@
|
|
|
|
install: modules_install
|
|
|
|
modules_install:
|
|
cp $(DRIVER).ko $(KERNEL_MODULES)/kernel/$(MOD_SUBDIR)
|
|
depmod -a -F $(SYSTEM_MAP) $(TARGET)
|