diff options
author | EuAndreh <eu@euandre.org> | 2024-10-20 03:33:44 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-10-20 04:08:36 -0300 |
commit | ba650b0b9fe6c23023e3205bec096e0e7ca9d847 (patch) | |
tree | a213ac949008e1daeea09e08a1c16bd96ad6c725 /deps.mk | |
parent | Add tests for assert functions (diff) | |
download | gobang-ba650b0b9fe6c23023e3205bec096e0e7ca9d847.tar.gz gobang-ba650b0b9fe6c23023e3205bec096e0e7ca9d847.tar.xz |
Adjust to conventional Makefile skeleton
Diffstat (limited to 'deps.mk')
-rw-r--r-- | deps.mk | 25 |
1 files changed, 25 insertions, 0 deletions
@@ -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 |