diff options
author | Kyle Meyer <kyle@kyleam.com> | 2020-05-03 12:27:10 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2020-05-03 12:45:58 -0400 |
commit | 776393889a3be6f79f800506ccc1587d635cc903 (patch) | |
tree | 4bd783085a698e2810fa627a0055d99f6d2097d7 /Makefile | |
parent | 0c1da9c289854b040ceed22837b2002e4bbff2cf (diff) | |
download | piem-776393889a3be6f79f800506ccc1587d635cc903.tar.gz |
manual: Add skeleton
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ddaa3b2 --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ + +BATCH = emacs -Q --batch + +all: piem.info + +.PHONY: clean +clean: + $(RM) *.info + +%.info: %.texi + makeinfo $< |