From df9b6b429bc1f04c57c0944a7118d62f895457f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Tue, 5 Jan 2021 23:59:07 +0100 Subject: Start on propper documentation (of js so far). --- doc/ref/Makefile | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 doc/ref/Makefile (limited to 'doc/ref/Makefile') diff --git a/doc/ref/Makefile b/doc/ref/Makefile new file mode 100644 index 00000000..2da2dd43 --- /dev/null +++ b/doc/ref/Makefile @@ -0,0 +1,6 @@ +TEXI_FILES := $(wildcard *.texi) + +all: calp.info + +calp.info: $(TEXI_FILES) + makeinfo calp.texi -- cgit v1.2.3 From 34c12d524d3a9238e174864220ab04adaf0cd7d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Wed, 6 Jan 2021 01:16:11 +0100 Subject: Split javascript doc into multiple files. --- doc/ref/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'doc/ref/Makefile') diff --git a/doc/ref/Makefile b/doc/ref/Makefile index 2da2dd43..35dd6604 100644 --- a/doc/ref/Makefile +++ b/doc/ref/Makefile @@ -1,6 +1,7 @@ TEXI_FILES := $(wildcard *.texi) +INFOFLAGS := all: calp.info calp.info: $(TEXI_FILES) - makeinfo calp.texi + makeinfo $(INFOFLAGS) calp.texi -- cgit v1.2.3 From 341e5a65a7b36e1f70ed9e6c2ae4f5b18c083b5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Wed, 13 Jan 2021 22:47:46 +0100 Subject: Doc work. --- doc/ref/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc/ref/Makefile') diff --git a/doc/ref/Makefile b/doc/ref/Makefile index 35dd6604..2232a70e 100644 --- a/doc/ref/Makefile +++ b/doc/ref/Makefile @@ -1,4 +1,4 @@ -TEXI_FILES := $(wildcard *.texi) +TEXI_FILES := $(shell find . -type f -name \*.texi) INFOFLAGS := all: calp.info -- cgit v1.2.3