diff options
author | EuAndreh <eu@euandre.org> | 2025-01-22 11:49:19 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2025-01-22 11:49:19 -0300 |
commit | aba9b883be33fe30f3ace51ce8c36aee18889099 (patch) | |
tree | efb6902ea9f88d46130789e2ec9acbb234b88cd0 /deps.mk | |
parent | Remove unused files (diff) | |
download | stm-aba9b883be33fe30f3ace51ce8c36aee18889099.tar.gz stm-aba9b883be33fe30f3ace51ce8c36aee18889099.tar.xz |
Setup Makefile build 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/stm.go \ + tests/stm.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/stm.a: src/stm.go +tests/main.a: tests/main.go +tests/stm.a: tests/stm.go +tests/main.bin: tests/main.a +tests/main.bin-check: tests/main.bin +tests/main.a: tests/$(NAME).a |