From 3989d6fff6a686f2e7b3fa2242592ecf897d7ee4 Mon Sep 17 00:00:00 2001 From: iceman Date: Mon, 15 Feb 2016 02:50:00 +0100 Subject: [PATCH] chg: the windows exe annoys the linux compiler --- tools/nonce2key/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tools/nonce2key/Makefile b/tools/nonce2key/Makefile index 43a87c3f..a46169f4 100644 --- a/tools/nonce2key/Makefile +++ b/tools/nonce2key/Makefile @@ -5,7 +5,8 @@ LDFLAGS = OBJS = crypto1.o crapto1.o HEADERS = crapto1.h -EXES = nonce2key nonce2key.exe +EXES = nonce2key +WINEXES = nonce2key.exe all: $(OBJS) $(EXES) @@ -16,4 +17,4 @@ all: $(OBJS) $(EXES) $(LD) $(LDFLAGS) -o $@ $(OBJS) $< clean: - rm -f $(OBJS) $(EXES) + rm -f $(OBJS) $(EXES) $(WINEXES) -- 2.39.2