10 lines
197 B
Makefile
10 lines
197 B
Makefile
KERNELRELEASE ?= `uname -r`
|
|
subdirs := src
|
|
.PHONY: $(subdirs)
|
|
|
|
all: $(subdirs)
|
|
clean: $(subdirs)
|
|
modules_install: $(subdirs)
|
|
$(subdirs):
|
|
make -C $@ $(MAKECMDGOALS) KERNELRELEASE=$(KERNELRELEASE)
|
|
|