mirror of
https://github.com/jgm/pandoc.git
synced 2026-07-09 02:51:08 +00:00
11 lines
335 B
Makefile
11 lines
335 B
Makefile
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.exp2026.pfx -in $< -i https://johnmacfarlane.net/ -t http://timestamp.comodoca.com/ -out $@ -askpass && rm $<
|
|
|