oas/make/test.mk
omicron e291f8fc56
All checks were successful
Validate the build / validate-build (push) Successful in 26s
Add initial unit tests
2025-04-04 04:07:40 +02:00

10 lines
209 B
Makefile

.PHONY: test
BUILD_DIR=build/test/
TARGET=oas-tests
SOURCES = $(filter-out src/main.c, $(shell find src/ tests/ -type f -name '*.c'))
-include make/base.mk
test: $(BUILD_DIR)$(TARGET)
$(BUILD_DIR)$(TARGET)