GNUmakefile: fix $(LIBS) missing

This commit is contained in:
2021-08-21 15:05:17 +02:00
parent 9901680424
commit 4f882b01cc

View File

@@ -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)