Skip to content
Snippets Groups Projects
Makefile 345 B
Newer Older
# by default use the fmc-bus within the repository
FMC_BUS ?= $(shell pwd)/fmc-bus/
export FMC_BUS
FMC_DRV ?= $(FMC_BUS)/kernel/
RUNME := $(shell test -d $(FMC_DRV) || git submodule update --init)

DIRS = $(FMC_BUS) kernel tools
all clean modules install modules_install:
	for d in $(DIRS); do $(MAKE) -C $$d $@ || exit 1; done