diff options
author | Charadon <dev@iotib.net> | 2022-10-05 17:13:10 -0400 |
---|---|---|
committer | Charadon <dev@iotib.net> | 2022-10-05 17:13:10 -0400 |
commit | f60854800d6f8d8ddff9afe35b9c098d7b4dd3ba (patch) | |
tree | 338714b69f8e348737a4e2dfbfbf2fa05b28ba7a | |
parent | cc5a3892f29f521dda73923bd61e726fc94173c4 (diff) | |
download | dscip-f60854800d6f8d8ddff9afe35b9c098d7b4dd3ba.tar.gz |
Makefile: Move makeinfo to it's own action
-rw-r--r-- | Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile index cbb9d01..a62173a 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ all: @echo "Use 'make install' or 'make uninstall'" @exit 0 -install: +install: info mkdir -p $(SCRIPT_DIR) mkdir -p $(BINDIR) mkdir -p $(INFODIR) @@ -18,13 +18,15 @@ install: install -m755 post.sh $(SCRIPT_DIR)/ install -m755 pre.sh $(SCRIPT_DIR)/ install -m755 setup.sh $(BINDIR)/setup-dscip - makeinfo manual.tex install -m644 dscip.info $(INFODIR)/ gzip $(INFODIR)/dscip.info html: makeinfo --html manual.tex +info: + makeinfo manual.tex + uninstall: rm -rf $(SCRIPT_DIR)/../.. rm $(BINDIR)/setup-dscip |