From b6bbbc56c20c41ff4b9a5b09052e29aa1f1d2f28 Mon Sep 17 00:00:00 2001 From: Christopher Wellons Date: Sun, 14 Feb 2021 12:41:38 -0500 Subject: [PATCH] Do not set EXE, accept value from environment When building this program for Windows, users need only have EXE=.exe in their environment for the Makefile to behave well. --- Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/Makefile b/Makefile index c6e2d32..4699308 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,6 @@ CFLAGS = -ansi -pedantic -Wall -Wextra -Wno-missing-field-initializers -O3 -g LDFLAGS = LDLIBS = PREFIX = /usr/local -EXE = sources = src/enchive.c src/chacha.c src/curve25519-donna.c src/sha256.c objects = $(sources:.c=.o)