It also includes scripts for formating Lisp code for people who will read Lisp code directly. It doesn't cost us much to organize the Lisp output a bit. In a similar spirit, I'm not including NOWEB as part of the build process. (Most users will not have NOWEB around to use it.) So while the Makefile is pretty short because there's little to do, Anyfile is the ANYWEB makefile. ANYWEB is my modified, personal version of NOWEB for Windows. (The way I use this second makefile is to make a shell alias called /amake/ that automatically invokes ``make -f Anyfile'' for me.)
14 lines
146 B
Bash
14 lines
146 B
Bash
#!/bin/sh
|
|
usage()
|
|
{
|
|
printf 'usage: %s tag file\n' $0
|
|
exit 1
|
|
}
|
|
test $# '<' 2 && usage
|
|
tag="$1"
|
|
shift
|
|
sed "/<<Version>>=/ {
|
|
n;
|
|
c\\
|
|
$tag
|
|
}" $*
|