# SPDX-FileCopyrightText: 2020 CERN (home.cern) # # SPDX-License-Identifier: CC0-1.0 -include Makefile.specific # include parent_common.mk for buildsystem's defines # It allows you to inherit an environment configuration from larger project REPO_PARENT ?= .. -include $(REPO_PARENT)/parent_common.mk all: modules tools modules: $(MAKE) -C drivers/zio .PHONY: tools tools: $(MAKE) -C tools M=$(shell /bin/pwd) # this make clean is ugly, I'm aware... clean: $(MAKE) -C drivers/zio clean $(MAKE) -C tools clean