-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile.template
More file actions
35 lines (23 loc) · 853 Bytes
/
Makefile.template
File metadata and controls
35 lines (23 loc) · 853 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# For building for the current running version of Linux
TARGET := $(shell uname -r)
HOME=$(shell pwd)
KERNEL_MODULES := /lib/modules/$(TARGET)
KERNEL_BUILD := /usr/src/linux-headers-$(TARGET)
SYSTEM_MAP := /boot/System.map-$(TARGET)
DRIVER := TESTME
# Directory below /lib/modules/$(TARGET)/kernel into which to install
# the module:
MOD_SUBDIR = drivers/hwmon
obj-m := $(patsubst %,%.o,$(DRIVER))
MAKEFLAGS += --no-print-directory
.PHONY: all install modules modules_install clean
all: modules getval
# Targets for running make directly in the external module directory:
modules clean:
@$(MAKE) -C $(KERNEL_BUILD) M=$(CURDIR) $@ EXTRA_CFLAGS=-I$(CURDIR)
install: modules_install
modules_install:
cp TESTME.ko $(KERNEL_MODULES)/kernel/$(MOD_SUBDIR)
depmod -a -F $(SYSTEM_MAP) $(TARGET)
getval: src/getval.c
cc -O -o getval src/getval.c