Skip to content
Snippets Groups Projects
Makefile 384 B
Newer Older
# We have a problem here: this package may be a submodule of something
# else (for example: fine-delay). If this is the case, fmc-bus is on ../
# This external script returns the pathname of the "kernel" subdir of fmc-bus
FMC_DRV = $(./check-fmc-bus)

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