of816/ofw/build.sh

14 lines
324 B
Bash
Raw Permalink Normal View History

2020-11-06 01:43:47 +00:00
#!/bin/bash
set -ex
cd `dirname $0`
mkdir -p out
cpp -w -nostdinc -traditional-cpp -undef -P -C -I. of.fs > out/of-blob.tmp
sed -e 's/^[ ]*//' < out/of-blob.tmp \
| sed -e '/^\\[ ]/d' \
2020-11-11 23:01:57 +00:00
| sed -e 's/[ ]\\[ ].+$//' \
| sed -e '/^([ ][^)]*[ ])[ ]*$/d' \
| sed -e '/^$/d' > out/of-blob.fs
2020-11-06 01:43:47 +00:00
rm -f out/of-blob.tmp