summaryrefslogtreecommitdiff
path: root/deps.mk
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2024-10-20 03:33:44 -0300
committerEuAndreh <eu@euandre.org>2024-10-20 04:08:36 -0300
commitba650b0b9fe6c23023e3205bec096e0e7ca9d847 (patch)
treea213ac949008e1daeea09e08a1c16bd96ad6c725 /deps.mk
parentAdd tests for assert functions (diff)
downloadgobang-ba650b0b9fe6c23023e3205bec096e0e7ca9d847.tar.gz
gobang-ba650b0b9fe6c23023e3205bec096e0e7ca9d847.tar.xz
Adjust to conventional Makefile skeleton
Diffstat (limited to 'deps.mk')
-rw-r--r--deps.mk25
1 files changed, 25 insertions, 0 deletions
diff --git a/deps.mk b/deps.mk
index e69de29..3efeded 100644
--- a/deps.mk
+++ b/deps.mk
@@ -0,0 +1,25 @@
+libs.go = \
+ src/gobang.go \
+ tests/gobang.go \
+
+mains.go = \
+ tests/main.go \
+
+functional-tests/lib.go = \
+
+functional-tests/main.go = \
+
+fuzz-targets/lib.go = \
+
+fuzz-targets/main.go = \
+
+benchmarks/lib.go = \
+
+benchmarks/main.go = \
+
+src/gobang.a: src/gobang.go
+tests/gobang.a: tests/gobang.go
+tests/main.a: tests/main.go
+tests/main.bin: tests/main.a
+tests/main.bin-check: tests/main.bin
+tests/main.a: tests/$(NAME).a