blob: d88272a54d45768078d2e5b39a6705bdf59f5786 (
plain)
# Makefile
#
SRC := $(shell pwd)
obj-m := mostcore.o
mostcore-y := core.o
all:
$(MAKE) -C $(KERNEL_SRC) M=$(SRC) modules
modules_install:
$(MAKE) -C $(KERNEL_SRC) M=$(SRC) modules_install
clean:
$(MAKE) -C $(KERNEL_SRC) M=$(SRC) clean
|