summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 4 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index d4ee17b..e3d6c36 100644
--- a/Makefile
+++ b/Makefile
@@ -9,18 +9,15 @@ all: diff.html
crtsh.pem: crtsh-getcerts config-domains.txt NET-crtsh
./crtsh-getcerts $$(cat config-domains.txt) > $@
-crtsh.html: %.html: %.pem crtsh-pem2html
- ./crtsh-pem2html < $< > $@
-
tls.pem: tls-getcerts config-sockets.txt NET-tls
./tls-getcerts $$(cat config-sockets.txt) > $@
-tls.html: %.html: %.pem tls-pem2html
- ./tls-pem2html < $< > $@
-
-diff.html: diff tls.pem crtsh.pem
+diff.pem: diff tls.pem crtsh.pem
./diff tls.pem crtsh.pem > $@
+tls.html crtsh.html diff.html: %.html: %.pem %-pem2html
+ ./$*-pem2html < $< > $@
+
NET-%:
date > $@