]> git.sur5r.net Git - groeck-it87/blob - Makefile
Register map as CSV
[groeck-it87] / Makefile
1 # For building for the current running version of Linux
2 TARGET          := $(shell uname -r)
3 # Or specific version
4 #TARGET         := 2.6.33.5
5 KERNEL_MODULES  := /lib/modules/$(TARGET)
6 # KERNEL_BUILD  := $(KERNEL_MODULES)/build
7 KERNEL_BUILD    := /usr/src/linux-headers-$(TARGET)
8
9 #SYSTEM_MAP     := $(KERNEL_BUILD)/System.map
10 SYSTEM_MAP      := /boot/System.map-$(TARGET)
11
12 DRIVER := it87
13
14 # Directory below /lib/modules/$(TARGET)/kernel into which to install
15 # the module:
16 MOD_SUBDIR = drivers/hwmon
17
18 obj-m   := $(patsubst %,%.o,$(DRIVER))
19 obj-ko  := $(patsubst %,%.ko,$(DRIVER))
20
21 MAKEFLAGS += --no-print-directory
22
23 .PHONY: all install modules modules_install clean
24
25 all: modules
26
27 # Targets for running make directly in the external module directory:
28
29 modules clean:
30         @$(MAKE) -C $(KERNEL_BUILD) M=$(CURDIR) $@
31
32 install: modules_install
33
34 modules_install:
35         cp $(DRIVER).ko $(KERNEL_MODULES)/kernel/$(MOD_SUBDIR)
36         depmod -a -F $(SYSTEM_MAP) $(TARGET)