summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2024-09-13 05:18:31 -0300
committerEuAndreh <eu@euandre.org>2024-09-13 05:18:31 -0300
commitb8a32588dc65507b5bbb6c36e7f6c491fcf82ab4 (patch)
treeb23576f726afef650697b47a1386ff2837905119 /Makefile
parentUse uuid from guuid package (diff)
downloadgobang-b8a32588dc65507b5bbb6c36e7f6c491fcf82ab4.tar.gz
gobang-b8a32588dc65507b5bbb6c36e7f6c491fcf82ab4.tar.xz
Use Hash() from scrypt package
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile21
1 files changed, 5 insertions, 16 deletions
diff --git a/Makefile b/Makefile
index c6b7b82..c5cd3aa 100644
--- a/Makefile
+++ b/Makefile
@@ -28,10 +28,6 @@ GOLDFLAGS = -L $(GOLIBDIR)
-all:
-include deps.mk
-
-
objects = \
src/$(NAME).a \
tests/$(NAME).a \
@@ -84,22 +80,15 @@ src/version.go: Makefile
-parallelunit.bin-check = \
- tests/main.bin/1 \
- tests/main.bin/2 \
- tests/main.bin/3 \
- tests/main.bin/4 \
-
-$(parallelunit.bin-check): tests/main.bin
- $(EXEC)$(@D) $(@F)
+tests.bin-check = \
+ tests/main.bin-check \
+ tests/libbuild.bin-check \
+tests/main.bin-check: tests/main.bin
tests/libbuild.bin-check: tests/libbuild.bin
+$(tests.bin-check):
$(EXEC)$*.bin
-tests.bin-check = \
- $(parallelunit.bin-check) \
- tests/libbuild.bin-check \
-
check-unit: $(tests.bin-check)