diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..f9d42dd --- /dev/null +++ b/Makefile @@ -0,0 +1,18 @@ +test.html: .unix test.em + export PATH=.:$$PATH; em.sh test.em | htwrap.sh -t | htindex.sh -s > test.html + +README.html: .unix README + export PATH=.:$$PATH; em.sh README | htindex.sh -s > README.html + +install: .unix + install em.sh /usr/local/bin/em + install htindex.sh /usr/local/bin/htindex + install htwrap.sh /usr/local/bin/htwrap + install emcollect emparse /usr/local/bin + +clean: + rm .unix + +.unix: + sed -i '1s,^#!/bin/awk,#!/usr/bin/awk,' emcollect emparse + @touch .unix |