summaryrefslogtreecommitdiff
path: root/Makefile
blob: 432518b0e456809607f4ff64b8f93dc166c366b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
all: certs.html

pem2html: %: %.go
	go build $<

certs.pem: getcerts domains.txt NET-crt.sh
	./getcerts $$(cat domains.txt) > $@

certs.html: %.html: %.pem pem2html
	./pem2html < $< > $@

NET-%:
	touch $@

.DELETE_ON_ERROR:
.SECONDARY: