diff options
author | Teddy Wing | 2023-11-14 21:20:26 +0100 |
---|---|---|
committer | Teddy Wing | 2023-11-14 21:20:26 +0100 |
commit | f0d64b4c56d6804fdf452a98d67e45b83d66974f (patch) | |
tree | 766699930a4dada504e3f878c82b10c97aa6bd04 /Makefile | |
parent | 63938fc62d82d1081ebcba962c21b0356ebeaf03 (diff) | |
download | swextreload-f0d64b4c56d6804fdf452a98d67e45b83d66974f.tar.bz2 |
Add man page
Copy the man page from Extreload and just change the name of the
executable.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..33e0e2b --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +MAN_PAGE := doc/swextreload.1 + + +.PHONY: doc +doc: $(MAN_PAGE) + +$(MAN_PAGE): doc/swextreload.1.txt + a2x --no-xmllint --format manpage $< |