From afd334bcc6885c7ccac8ff66cedf81b889190d15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Reimar=20D=C3=B6ffinger?= Date: Wed, 24 Jun 2015 22:54:20 +0200 Subject: [PATCH] Add code signing for Windows command. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Reimar Döffinger --- Makefile.am | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile.am b/Makefile.am index e93b943..1ed4c39 100644 --- a/Makefile.am +++ b/Makefile.am @@ -44,3 +44,6 @@ EXTRA_DIST = \ pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA= libiec16022.pc + +%.signed.exe: %.exe + osslsigncode sign -ts http://www.startssl.com/timestamp -certs $(SIGNKEY).crt -key $(SIGNKEY).key -in $^ -out $@