From f2263ff211aba3e6af4658b416f3a7bef7dcc852 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Tue, 14 Jan 2020 15:38:33 -0500 Subject: rebuild with latest revision --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0294f48..cb52921 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,9 @@ default: all CC=c99 +LD=$(CC) CFLAGS=-Wall -Wextra -Wpedantic -Werror -g +LDFLAGS= all: maje @@ -31,4 +33,4 @@ maje.o: maje.c $(CC) $(CFLAGS) -c maje.c maje: - $(CC) -o $@ *.o + $(LD) $(LDFLAGS) -o $@ *.o -- cgit v1.2.1