diff options
author | EuAndreh <eu@euandre.org> | 2024-08-08 17:08:12 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-08-08 17:08:12 -0300 |
commit | 273ec6dc29a8465d8b94fcc8bd2f708c82ae3249 (patch) | |
tree | 118bdda246647c5a912e9c40327592ce1aeb9581 /Makefile | |
parent | tests/gobang.go: Add tests for most missing functions (diff) | |
download | gobang-273ec6dc29a8465d8b94fcc8bd2f708c82ae3249.tar.gz gobang-273ec6dc29a8465d8b94fcc8bd2f708c82ae3249.tar.xz |
Makefile: Reorder deps rules
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -52,6 +52,8 @@ side-assets = \ all: $(derived-assets) +$(objects): Makefile + src/$(NAME).a: src/$(NAME).go go tool compile $(GOCFLAGS) -o $@ -p $(*F) $*.go @@ -65,9 +67,6 @@ tests/$(NAME)_main.bin: tests/$(NAME)_main.a go tool link $(GOLDFLAGS) -o $@ -L $(@D) $*.a -$(objects): Makefile - - tests.bin-check = \ tests/$(NAME)_main.bin/1 \ |