From 7278a8fc41c7784074676851bab97762b364bc70 Mon Sep 17 00:00:00 2001 From: emma Date: Fri, 9 Aug 2024 18:00:25 -0600 Subject: [PATCH] Makefile: fixes testing import --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6c6d555..1b9b9bd 100644 --- a/Makefile +++ b/Makefile @@ -33,7 +33,6 @@ CFLAGS += -I$(SYSEXITS) # testing requires the absolute path to the bin directory set BIN = build/bin -include tests/tests.mk .PHONY: default default: all test @@ -158,3 +157,5 @@ build/bin/swab: src/swab.rs build rustlibs true: build/bin/true build/bin/true: src/true.c build $(CC) $(CFLAGS) -o $@ src/true.c + +include tests/tests.mk