aboutsummaryrefslogtreecommitdiff
path: root/doc/ref/Makefile
blob: 64b3dda3103c55322b975f2dc28380feef6b9d3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
.PHONY: all install

TEXI_FILES := $(shell find . -type f -name \*.texi)
INFOFLAGS := --no-split

all: calp.info

calp.info: $(TEXI_FILES)
	$(MAKEINFO) -o $@ $(INFOFLAGS) calp.texi

install: all
	install -m644 -D -t $(DESTDIR)/usr/share/info/ calp.info