From 97d74b5c53ef294cd5153bdf97fbc0be0003d3bb Mon Sep 17 00:00:00 2001 From: Karl Lehenbauer Date: Sun, 19 Oct 2014 10:00:15 -0500 Subject: [PATCH] Doc Makefile for dump1090 --- doc/Makefile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 doc/Makefile diff --git a/doc/Makefile b/doc/Makefile new file mode 100644 index 0000000..c338602 --- /dev/null +++ b/doc/Makefile @@ -0,0 +1,17 @@ +# +# makefile for piaware doc files +# + +DOCDIR=/usr/share/man/man1 + +MANPAGES= dump1090.1 + +all: + @echo "'make install' to install docs" + +install: + @echo ---- installing docs + cp $(MANPAGES) $(DOCDIR) + @echo --- compressing docs + cd $(DOCDIR); gzip --force -9 $(MANPAGES) +