diff options
author | June McEnroe <june@causal.agency> | 2018-09-17 22:40:47 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-09-17 22:40:47 -0400 |
commit | 13fc2188b6c63d65b0c718aba7e286b3c94c71e3 (patch) | |
tree | be73d03f633c1407e8c265ec5065175e24bbac9f /Makefile | |
download | src-13fc2188b6c63d65b0c718aba7e286b3c94c71e3.tar.gz src-13fc2188b6c63d65b0c718aba7e286b3c94c71e3.zip |
Add "Using Make"
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..543dc4ee --- /dev/null +++ b/Makefile @@ -0,0 +1,16 @@ +WEBROOT = /usr/local/www/text.causal.agency + +TXTS += 001-make.txt + +all: $(TXTS) + +.SUFFIXES: .7 .txt + +.7.txt: + mandoc $< | sed $$'s/.\b//g' > $@ + +clean: + rm -f $(TXTS) + +install: + cp $(TXTS) $(WEBROOT) |