From 06eaf1738494a9e783ed100565911d08efaae826 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Sat, 14 Dec 2024 10:30:47 -0300 Subject: Add Makefile and move files to structured folders --- deps.mk | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 deps.mk (limited to 'deps.mk') diff --git a/deps.mk b/deps.mk new file mode 100644 index 0000000..b7701af --- /dev/null +++ b/deps.mk @@ -0,0 +1,25 @@ +libs.go = \ + src/pds.go \ + tests/pds.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/pds.a: src/pds.go +tests/main.a: tests/main.go +tests/pds.a: tests/pds.go +tests/main.bin: tests/main.a +tests/main.bin-check: tests/main.bin +tests/main.a: tests/$(NAME).a -- cgit v1.2.3