]> git.phdru.name Git - mimedecode.git/blob - Makefile
Build(GHActions): Use `checkout@v4` instead of outdated `v2`
[mimedecode.git] / Makefile
1
2 .PHONY: all
3 all: docs test clean distr
4
5
6 .PHONY: docs
7 docs: mimedecode.html mimedecode.man mimedecode.txt
8
9 include Makefile.xsltproc
10
11
12 .PHONY: distr
13 distr:
14         ./mk-distr
15
16
17 .PHONY: test
18 test:
19         make -C test all
20
21
22 CLEANFILES = *.py[co] MANIFEST
23
24 .PHONY: clean
25 clean:
26         rm -f $(CLEANFILES)
27         make -C test clean