summaryrefslogtreecommitdiffstats
path: root/clean.com
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 16:37:15 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 16:37:15 +0000
commitae5d181b854d3ccb373b6bc01b4869e44ff4d87a (patch)
tree91f59efb48c56a84cc798e012fccb667b63d3fee /clean.com
parentInitial commit. (diff)
downloadlynx-ae5d181b854d3ccb373b6bc01b4869e44ff4d87a.tar.xz
lynx-ae5d181b854d3ccb373b6bc01b4869e44ff4d87a.zip
Adding upstream version 2.9.0dev.12.upstream/2.9.0dev.12upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'clean.com')
-rw-r--r--clean.com22
1 files changed, 22 insertions, 0 deletions
diff --git a/clean.com b/clean.com
new file mode 100644
index 0000000..8a1fa20
--- /dev/null
+++ b/clean.com
@@ -0,0 +1,22 @@
+$! Command file to remove files created by build.com -T.Dickey
+$ set noverify
+$ delete [...]*.obj;*
+$ delete [...]*.olb;*
+$ delete [...]*.lis;*
+$ delete [...]*.map;*
+$ delete [...]*.exe;*
+$
+$ name = ""
+$ loop_tbl :
+$ last = name
+$ name = F$SEARCH("[.src.chrtrans]*.tbl;",1)
+$ if name .nes. "" .and. name .nes. last
+$ then
+$ head = "[.src.chrtrans]" + F$PARSE(name,,,"NAME","SYNTAX_ONLY") + ".h"
+$ if f$search("''head'",2) .nes. ""
+$ then
+$ write sys$output "head " + head
+$ delete 'head;*
+$ endif
+$ goto loop_tbl
+$ endif