diff options
author | EuAndreh <eu@euandre.org> | 2024-12-14 10:30:47 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-12-14 10:30:47 -0300 |
commit | 06eaf1738494a9e783ed100565911d08efaae826 (patch) | |
tree | a372bcc99fed70e1cf298eeddef1ec134b178102 /deps.mk | |
parent | Remove extraneous files (diff) | |
download | pds-06eaf1738494a9e783ed100565911d08efaae826.tar.gz pds-06eaf1738494a9e783ed100565911d08efaae826.tar.xz |
Add Makefile and move files to structured folders
Diffstat (limited to 'deps.mk')
-rw-r--r-- | deps.mk | 25 |
1 files changed, 25 insertions, 0 deletions
@@ -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 |