summaryrefslogtreecommitdiff
path: root/Makefile
blob: 15d69da9b2f3d3d21868d5716400e5a15d7d61c8 (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-%:
	date > $@

.DELETE_ON_ERROR:
.SECONDARY: