Skip to content
Snippets Groups Projects
Makefile 405 B
Newer Older
-include Makefile.specific
# include parent_common.mk for buildsystem's defines
#use absolute path for REPO_PARENT
REPO_PARENT ?= $(shell /bin/pwd)/../..
-include $(REPO_PARENT)/parent_common.mk

LINUX ?= /lib/modules/$(shell uname -r)/build

export CONFIG_FMC=m

all: modules

modules help install modules_install:
	make -C $(LINUX) M=$(shell pwd)

.PHONY: all modules clean help install modules_install