node_any: check attribute presence
[protos/libecoli.git] / mk / ecoli-clean-vars.mk
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright 2015, Olivier MATZ <zer0@droids-corp.org>
3
4 # remove files
5 #  $1: files
6 clean_cmd = rm -rf $(1)
7
8 # print line used to clean files
9 ifeq ($(V),1)
10 clean_print_cmd = echo $(call protect_quote,$(call clean_cmd,$1))
11 else
12 clean_print_cmd = echo "  CLEAN $(CURDIR)"
13 endif