From a07053778fff4a14d7ba903979fef969ec676dc6 Mon Sep 17 00:00:00 2001 From: Christopher Wellons Date: Mon, 18 May 2020 22:37:30 +0000 Subject: [PATCH] Add LDFLAGS and LDLIBS to Makefile --- Makefile | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index b1295da..c6e2d32 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,11 @@ .POSIX: .SUFFIXES: -CC = cc -CFLAGS = -ansi -pedantic -Wall -Wextra -Wno-missing-field-initializers -O3 -g -PREFIX = /usr/local -EXE = +CC = cc +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)