From 2ce4f876734df9adcae7c7d3e558f8bcfd37cb52 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Sat, 10 May 2025 16:30:42 -0300 Subject: Setup Go skeleton --- deps.mk | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 deps.mk (limited to 'deps.mk') diff --git a/deps.mk b/deps.mk new file mode 100644 index 0000000..e2091e3 --- /dev/null +++ b/deps.mk @@ -0,0 +1,57 @@ +libs.go = \ + src/gotext.go \ + tests/benchmarks/gettext/gotext.go \ + tests/functional/api-usage/gotext.go \ + tests/fuzz/api/gotext.go \ + tests/gotext.go \ + +mains.go = \ + src/main.go \ + tests/benchmarks/gettext/main.go \ + tests/functional/api-usage/main.go \ + tests/fuzz/api/main.go \ + tests/main.go \ + +functional-tests/lib.go = \ + tests/functional/api-usage/gotext.go \ + +functional-tests/main.go = \ + tests/functional/api-usage/main.go \ + +fuzz-targets/lib.go = \ + tests/fuzz/api/gotext.go \ + +fuzz-targets/main.go = \ + tests/fuzz/api/main.go \ + +benchmarks/lib.go = \ + tests/benchmarks/gettext/gotext.go \ + +benchmarks/main.go = \ + tests/benchmarks/gettext/main.go \ + +src/gotext.a: src/gotext.go +src/main.a: src/main.go +tests/benchmarks/gettext/gotext.a: tests/benchmarks/gettext/gotext.go +tests/benchmarks/gettext/main.a: tests/benchmarks/gettext/main.go +tests/functional/api-usage/gotext.a: tests/functional/api-usage/gotext.go +tests/functional/api-usage/main.a: tests/functional/api-usage/main.go +tests/fuzz/api/gotext.a: tests/fuzz/api/gotext.go +tests/fuzz/api/main.a: tests/fuzz/api/main.go +tests/gotext.a: tests/gotext.go +tests/main.a: tests/main.go +src/main.bin: src/main.a +tests/benchmarks/gettext/main.bin: tests/benchmarks/gettext/main.a +tests/functional/api-usage/main.bin: tests/functional/api-usage/main.a +tests/fuzz/api/main.bin: tests/fuzz/api/main.a +tests/main.bin: tests/main.a +src/main.bin-check: src/main.bin +tests/benchmarks/gettext/main.bin-check: tests/benchmarks/gettext/main.bin +tests/functional/api-usage/main.bin-check: tests/functional/api-usage/main.bin +tests/fuzz/api/main.bin-check: tests/fuzz/api/main.bin +tests/main.bin-check: tests/main.bin +src/main.a: src/$(NAME).a +tests/benchmarks/gettext/main.a: tests/benchmarks/gettext/$(NAME).a +tests/functional/api-usage/main.a: tests/functional/api-usage/$(NAME).a +tests/fuzz/api/main.a: tests/fuzz/api/$(NAME).a +tests/main.a: tests/$(NAME).a -- cgit v1.2.3