make all should really build all (including the tests)

Thu, 03 Sep 2026 12:13:05 +0200

author
Mike Becker <universe@uap-core.de>
date
Thu, 03 Sep 2026 12:13:05 +0200
changeset 214
31d73d150c76
parent 213
cf7b86d79d35
child 215
d20887f0e8b3

make all should really build all (including the tests)

we removed the tests from the all-target initially
because they will cause warnings with compilers not
supporting C23

but we should not care too much about this

Makefile file | annotate | diff | comparison | revisions
--- a/Makefile	Thu Sep 03 11:54:19 2026 +0200
+++ b/Makefile	Thu Sep 03 12:13:05 2026 +0200
@@ -28,7 +28,7 @@
 
 include config.mk
 
-all: app
+all: app tests
 
 app: $(BUILDDIR) FORCE
 	cd src && $(MAKE)

mercurial