home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh
- awk '{
- if ($1 == "CKPT")
- {
- if ($2 == "VARS")
- { print " CKPT_VAR1";
- print "#undef CKPT_HEAD";
- print "#define CKPT_HEAD CKPT_head";
- print " CKPT_VAR4"; }
- else if ($2 == "TOPS")
- { print " CKPT_TOP1";
- print "#undef CKPT_SPOT";
- print "#define CKPT_SPOT CKPT_spot";
- print " CKPT_TOP4" }
- else if ($2 == "POINT")
- { print " CKPT_1("$3")";
- print "#undef CKPT_HEAD";
- print "#define CKPT_HEAD "$3;
- print " CKPT_4("$4")";
- print "#undef CKPT_SPOT";
- print "#define CKPT_SPOT "$4;
- print " CKPT_7" }
- else if ($2 == "BOTS")
- { print " CKPT_BOT1" }
- }
- else
- print
- }'
-