From 7058628f80dc5e85c73ec84dfb37a016203037b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Kub=C3=A1nek?= Date: Sun, 1 Sep 2024 18:30:32 -0400 Subject: [PATCH] Fixed Makefile tests target --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index f9b7f2b..6e9a648 100644 --- a/Makefile +++ b/Makefile @@ -33,13 +33,13 @@ src/%.cpp.o: src/%.cpp $(MAKE) -C src $(patsubst src/%,%,$@) tests: tests/Makefile tests/*.cpp - @${MAKE} -C SIMULATOR=1 tests + @${MAKE} -C tests SIMULATOR=1 run_tests: tests @${MAKE} -C tests run junit: tests - @${MAKE} -C SIMULATOR=1 tests junit + @${MAKE} -C tests junit SIMULATOR=1 doc: ${co}doxygen Doxyfile