From 4f882b01ccc35d233ed242c8469cdb80734bafd3 Mon Sep 17 00:00:00 2001 From: Bruno Raoult Date: Sat, 21 Aug 2021 15:05:17 +0200 Subject: [PATCH] GNUmakefile: fix $(LIBS) missing --- c/templates/GNUmakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c/templates/GNUmakefile b/c/templates/GNUmakefile index ec085d0..adf038d 100644 --- a/c/templates/GNUmakefile +++ b/c/templates/GNUmakefile @@ -48,4 +48,4 @@ debugtest: CFLAGS+=-DDEBUG debugtest: test std: src/*.c src/*.h - $(CC) $(CFLAGS) src/*.c -o test.out + $(CC) $(CFLAGS) src/*.c -o tests.out $(LIBS)