Skip to content

Commit

Permalink
..
Browse files Browse the repository at this point in the history
  • Loading branch information
koekeishiya committed Mar 29, 2024
1 parent 0d43bc8 commit 79e412c
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion tests/makefile
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 79e412c

Please sign in to comment.