home: hub: minipeg

ref: af684325f22bc573a9fdb95f176b8a17bb3001a4
dir: /amalg.sh/

View raw version
# Amalgamate the source code, sqlite3 style.
set -eu
echo "/*"
echo "  -----------------------------------------------------------------------"
echo "  |    This file is a generated redistributable version of minipeg.     |"
echo "  | See https://github.com/andrewchambers/minipeg for more information. |"
echo "  -----------------------------------------------------------------------"
sed 's/^/  /g' LICENSE
echo ""
echo "*/"
(
  for f in "$@"
  do
    case "$f" in
      *.c)
      cat "$f"
      ;;
    esac
  done
) | grep '^#include <' | sort -u

for f in "$@"
do
  echo "#line 0 \"$f\""
  grep -v '^#include' "$f"
done