summaryrefslogtreecommitdiffstats
path: root/utils/wpseditor/libwps/cleanall.sh
diff options
context:
space:
mode:
Diffstat (limited to 'utils/wpseditor/libwps/cleanall.sh')
-rw-r--r--utils/wpseditor/libwps/cleanall.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/utils/wpseditor/libwps/cleanall.sh b/utils/wpseditor/libwps/cleanall.sh
new file mode 100644
index 0000000000..15b733a6a7
--- /dev/null
+++ b/utils/wpseditor/libwps/cleanall.sh
@@ -0,0 +1,7 @@
+#!/bin/sh
+cat targets.txt | (
+ while read target model
+ do
+ make MODEL=$model TARGET=$target clean
+ done
+)