From e3e51f09047337983acf18252a6b38d5e8eca4b1 Mon Sep 17 00:00:00 2001 From: heck Date: Wed, 28 Dec 2022 23:28:28 +0100 Subject: [PATCH] Makefiles stuff... --- Makefile | 8 ++++++-- Makefile.conf | 4 ++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index a8d2ae4..1abd4d3 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,13 @@ .PHONY: all src clean -all: src +all: test src src: $(MAKE) -C src +test: + $(MAKE) -C test + clean: - $(MAKE) -C src clean \ No newline at end of file + $(MAKE) -C src clean + $(MAKE) -C test clean \ No newline at end of file diff --git a/Makefile.conf b/Makefile.conf index b03e43e..2d9b8e5 100644 --- a/Makefile.conf +++ b/Makefile.conf @@ -21,8 +21,8 @@ CFLAGS+=\ -Wwrite-strings \ -Wconversion \ -Wshadow \ - -Wstrict-prototypes \ - -Werror=implicit-function-declaration \ +# -Wstrict-prototypes \ +# -Werror=implicit-function-declaration \ -Werror=implicit-int \ -Werror=incompatible-pointer-types \ -Werror=int-conversion \