From 1a503bdcd0cc22a4f6b1149f6d63d1dc895fd5d4 Mon Sep 17 00:00:00 2001 From: Michel Pollet Date: Tue, 14 Oct 2014 18:53:10 +0100 Subject: [PATCH] tests: Fix makefile Was using ${OBJ} before it was declared. Signed-off-by: Michel Pollet --- tests/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/Makefile b/tests/Makefile index 3232c8b..5185342 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -27,12 +27,13 @@ IPATH += ${simavr}/include IPATH += ${simavr}/simavr/sim tests_src := ${wildcard test_*.c} -tests := ${patsubst %.c, ${OBJ}/%.tst, ${tests_src}} all: obj axf tests include ../Makefile.common +tests := ${patsubst %.c, ${OBJ}/%.tst, ${tests_src}} + tests: ${tests} axf: ${sources:.c=.axf} -- 2.39.5