Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit 72cc894

Browse files
committed
provides a clean target to remove errant binaries
1 parent c3791ad commit 72cc894

1 file changed

Lines changed: 10 additions & 1 deletion

File tree

Makefile

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ else
4646
endif
4747

4848
# Prettifying output for CI builds
49-
XCODEBUILD_FILTER ?=
49+
XCODEBUILD_FILTER ?=
5050

5151
include Makefile.common
5252

@@ -57,6 +57,15 @@ include Makefile.common
5757
all: all-$(guess_platform)
5858
check: check-$(guess_platform)
5959

60+
# [[ MDW-2017-05-09 ]] feature_clean_target
61+
clean:
62+
rm -rf linux-*-bin
63+
rm -rf build-linux-*
64+
rm -rf prebuilt/fetched
65+
rm -rf prebuilt/include
66+
rm -rf prebuilt/lib
67+
find . -name \*.lcb | xargs touch
68+
6069
check-common-%:
6170
$(MAKE) -C tests bin_dir=../$*-bin
6271
$(MAKE) -C ide/tests bin_dir=../../$*-bin

0 commit comments

Comments
 (0)