From b747069fa62351904b567d6283ca2ca337efa5cf Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Sun, 20 Oct 2024 04:03:28 -0300 Subject: Adapt to latest golang Makefile skeleton --- deps.mk | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) (limited to 'deps.mk') diff --git a/deps.mk b/deps.mk index e69de29..4aa1ab8 100644 --- a/deps.mk +++ b/deps.mk @@ -0,0 +1,30 @@ +libs.go = \ + src/untls.go \ + tests/untls.go \ + +mains.go = \ + src/main.go \ + tests/main.go \ + +functional-tests/libs.go = \ + +functional-tests/main.go = \ + +fuzz-targets/lib.go = \ + +fuzz-targets/main.go = \ + +benchmarks/lib.go = \ + +benchmarks/main.go = \ + +src/main.a: src/main.go +src/untls.a: src/untls.go +tests/main.a: tests/main.go +tests/untls.a: tests/untls.go +src/main.bin: src/main.a +tests/main.bin: tests/main.a +src/main.bin-check: src/main.bin +tests/main.bin-check: tests/main.bin +src/main.a: src/$(NAME).a +tests/main.a: tests/$(NAME).a -- cgit v1.2.3