-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
54 lines (39 loc) · 1.3 KB
/
Makefile
File metadata and controls
54 lines (39 loc) · 1.3 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
MOD_NAME := snd-i2s-audio-osmos
ifneq ($(KERNELRELEASE),)
# call from kernel build system
all:
@echo "Building from the kernel build system"
@echo "Module build: $(CONFIG_SND_I2S_OSMOS)"
@echo "Name: $(MOD_NAME)"
obj-$(CONFIG_SND_I2S_OSMOS) := $(MOD_NAME).o
else
# external module build
EXTRA_FLAGS += -I$(PWD)
#
# KDIR is a path to a directory containing kernel source.
# It can be specified on the command line passed to make to enable the module to
# be built and installed for a kernel other than the one currently running.
# By default it is the path to the symbolic link created when
# the current kernel's modules were installed, but
# any valid path to the directory in which the target kernel's source is located
# can be provided on the command line.
#
KDIR ?= /lib/modules/$(shell uname -r)/build
MDIR ?= /lib/modules/$(shell uname -r)
PWD := $(shell pwd)
export CONFIG_SND_I2S_OSMOS := m
all:
$(MAKE) -C $(KDIR) M=$(PWD) modules
clean:
$(MAKE) -C $(KDIR) M=$(PWD) clean
help:
$(MAKE) -C $(KDIR) M=$(PWD) help
install: snd-i2s-audio-osmos.ko
rm -f ${MDIR}/kernel/sound/drivers/$(MOD_NAME).ko
install -m644 -b -D $(MOD_NAME).ko ${MDIR}/kernel/sound/drivers/$(MOD_NAME).ko
depmod -a
uninstall:
rm -rf ${MDIR}/kernel/sound/drivers/$(MOD_NAME).ko
depmod -a
endif
.PHONY : all clean install uninstall