diff options
author | EuAndreh <eu@euandre.org> | 2025-05-10 16:30:42 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2025-05-10 16:39:34 -0300 |
commit | 2ce4f876734df9adcae7c7d3e558f8bcfd37cb52 (patch) | |
tree | 9343323c26afb6169c0ea143d516cb089aba91d9 /deps.mk | |
parent | Merge pull request #11 from mvo5/bugfix/fix-tests-on-linux (diff) | |
download | gotext-2ce4f876734df9adcae7c7d3e558f8bcfd37cb52.tar.gz gotext-2ce4f876734df9adcae7c7d3e558f8bcfd37cb52.tar.xz |
Setup Go skeleton
Diffstat (limited to 'deps.mk')
-rw-r--r-- | deps.mk | 57 |
1 files changed, 57 insertions, 0 deletions
@@ -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 |