blob: 77685edd994de12876eb764093c310c74b70f5e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2010-2014 Intel Corporation
# clean helper .mk
# fast way, no need to do preclean and postclean
ifeq ($(PRECLEAN)$(POSTCLEAN),)
_postclean: $(_CLEAN)
@touch _postclean
else # slower way
_preclean: $(PRECLEAN)
@touch _preclean
ifneq ($(_CLEAN),)
$(_CLEAN): _preclean
else
_CLEAN = _preclean
endif
_clean: $(_CLEAN)
@touch _clean
ifneq ($(POSTCLEAN),)
$(POSTCLEAN): _clean
else
POSTCLEAN = _clean
endif
_postclean: $(POSTCLEAN)
@touch _postclean
endif
|