2019-11-30 07:02:04 +01:00
|
|
|
UNSIGNED=$(wildcard pandoc-*-UNSIGNED.msi)
|
|
|
|
SIGNED=$(patsubst %-UNSIGNED.msi, %.msi, $(UNSIGNED))
|
2019-11-29 20:50:09 +01:00
|
|
|
|
2019-11-30 07:02:04 +01:00
|
|
|
all: $(SIGNED)
|
|
|
|
|
|
|
|
.PHONY: all
|
|
|
|
|
|
|
|
pandoc-%.msi: pandoc-%-UNSIGNED.msi
|
|
|
|
osslsigncode sign -pkcs12 $$HOME/Private/SectigoCodeSigning.exp2023.p12 -in $< -i http://johnmacfarlane.net/ -t http://timestamp.comodoca.com/ -out $@ -askpass && rm $<
|
2019-11-29 20:50:09 +01:00
|
|
|
|