diff options
Diffstat (limited to 'deps.mk')
| -rw-r--r-- | deps.mk | 60 |
1 files changed, 60 insertions, 0 deletions
@@ -0,0 +1,60 @@ +libs.go = \ + src/remembering.go \ + tests/benchmarks/ranking-throughput/remembering.go \ + tests/functional/pick-roundtrip/remembering.go \ + tests/fuzz/profile/remembering.go \ + tests/remembering.go \ + +mains.go = \ + src/main.go \ + tests/benchmarks/ranking-throughput/main.go \ + tests/functional/pick-roundtrip/main.go \ + tests/fuzz/profile/main.go \ + tests/main.go \ + +manpages.adoc = \ + doc/remembering.en.1.adoc \ + +functional/lib.go = \ + tests/functional/pick-roundtrip/remembering.go \ + +functional/main.go = \ + tests/functional/pick-roundtrip/main.go \ + +fuzz/lib.go = \ + tests/fuzz/profile/remembering.go \ + +fuzz/main.go = \ + tests/fuzz/profile/main.go \ + +benchmarks/lib.go = \ + tests/benchmarks/ranking-throughput/remembering.go \ + +benchmarks/main.go = \ + tests/benchmarks/ranking-throughput/main.go \ + +src/main.a: src/main.go +src/remembering.a: src/remembering.go +tests/benchmarks/ranking-throughput/main.a: tests/benchmarks/ranking-throughput/main.go +tests/benchmarks/ranking-throughput/remembering.a: tests/benchmarks/ranking-throughput/remembering.go +tests/functional/pick-roundtrip/main.a: tests/functional/pick-roundtrip/main.go +tests/functional/pick-roundtrip/remembering.a: tests/functional/pick-roundtrip/remembering.go +tests/fuzz/profile/main.a: tests/fuzz/profile/main.go +tests/fuzz/profile/remembering.a: tests/fuzz/profile/remembering.go +tests/main.a: tests/main.go +tests/remembering.a: tests/remembering.go +src/main.bin: src/main.a +tests/benchmarks/ranking-throughput/main.bin: tests/benchmarks/ranking-throughput/main.a +tests/functional/pick-roundtrip/main.bin: tests/functional/pick-roundtrip/main.a +tests/fuzz/profile/main.bin: tests/fuzz/profile/main.a +tests/main.bin: tests/main.a +src/main.bin-check: src/main.bin +tests/benchmarks/ranking-throughput/main.bin-check: tests/benchmarks/ranking-throughput/main.bin +tests/functional/pick-roundtrip/main.bin-check: tests/functional/pick-roundtrip/main.bin +tests/fuzz/profile/main.bin-check: tests/fuzz/profile/main.bin +tests/main.bin-check: tests/main.bin +src/main.a: src/$(NAME).a +tests/benchmarks/ranking-throughput/main.a: tests/benchmarks/ranking-throughput/$(NAME).a +tests/functional/pick-roundtrip/main.a: tests/functional/pick-roundtrip/$(NAME).a +tests/fuzz/profile/main.a: tests/fuzz/profile/$(NAME).a +tests/main.a: tests/$(NAME).a |
