From 79e412c123466dccc09c03500a9739abf62d33f7 Mon Sep 17 00:00:00 2001 From: koekeishiya Date: Fri, 29 Mar 2024 04:14:57 +0100 Subject: [PATCH] .. --- tests/makefile | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/tests/makefile b/tests/makefile index 263540e1..cb6e4b49 100644 --- a/tests/makefile +++ b/tests/makefile @@ -1,5 +1,13 @@ -all: +.PHONY: clean build run all + +all: clean build run + +clean: rm -rf ./bin + +build: mkdir -p ./bin clang ./src/tests.m -o ./bin/tests -DTESTS -DPROFILE=1 -F/System/Library/PrivateFrameworks -framework Carbon -framework Cocoa -framework CoreServices -framework CoreVideo -framework SkyLight + +run: ./bin/tests