mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-19 20:13:01 -04:00
8 lines
115 B
Makefile
8 lines
115 B
Makefile
KERNEL_DIR ?= /usr/src/linux
|
|
PWD := $(shell pwd)
|
|
|
|
all: module
|
|
|
|
module:
|
|
@$(MAKE) -C $(KERNEL_DIR) M=$(PWD) modules
|