about summary refs log tree commit diff stats
path: root/Makefile
diff options
context:
space:
mode:
authorCharadon <dev@iotib.net>2022-10-05 17:13:10 -0400
committerCharadon <dev@iotib.net>2022-10-05 17:13:10 -0400
commitf60854800d6f8d8ddff9afe35b9c098d7b4dd3ba (patch)
tree338714b69f8e348737a4e2dfbfbf2fa05b28ba7a /Makefile
parentcc5a3892f29f521dda73923bd61e726fc94173c4 (diff)
downloaddscip-f60854800d6f8d8ddff9afe35b9c098d7b4dd3ba.tar.gz
Makefile: Move makeinfo to it's own action
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
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