Skip to content
Snippets Groups Projects
Makefile 400 B
# SPDX-License-Identifier: CC0-1.0
#
# SPDX-FileCopyrightText: 2019 CERN
C_DIRS = \
     tools \
     drivers/fmc

DIRS = $(C_DIRS) \
     Documentation/fmc

all clean cleanall install: $(DIRS)

modules modules_install:
	@$(MAKE) -C drivers/fmc/ $@

flawfinder cppcheck:
	for d in $(C_DIRS); do $(MAKE) -C $$d $@ || exit 1; done

.PHONY: modules modules_install clean all cppcheck flawfinder $(DIRS)