Makefile: fixes testing import

This commit is contained in:
Emma Tebibyte 2024-08-09 18:00:25 -06:00
parent 8e5090d13d
commit 7278a8fc41
Signed by: emma
GPG Key ID: 06FA419A1698C270

View File

@ -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