blob: 34dda34c2ddf174bd606e857036427c1024725b3 (
plain)
1
2
3
4
5
6
7
8
9
10
|
UNSIGNED=$(wildcard pandoc-*-UNSIGNED.msi)
SIGNED=$(patsubst %-UNSIGNED.msi, %.msi, $(UNSIGNED))
all: $(SIGNED)
.PHONY: all
pandoc-%.msi: pandoc-%-UNSIGNED.msi
osslsigncode sign -pkcs12 $$HOME/Private/SectigoCodeSigning.exp2023.p12 -in $< -i https://johnmacfarlane.net/ -t http://timestamp.comodoca.com/ -out $@ -askpass && rm $<
|