summaryrefslogtreecommitdiff
path: root/deps.mk
diff options
context:
space:
mode:
Diffstat (limited to 'deps.mk')
-rw-r--r--deps.mk30
1 files changed, 30 insertions, 0 deletions
diff --git a/deps.mk b/deps.mk
new file mode 100644
index 0000000..5318d53
--- /dev/null
+++ b/deps.mk
@@ -0,0 +1,30 @@
+libs.go = \
+ src/hsts.go \
+ tests/hsts.go \
+
+mains.go = \
+ src/main.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/hsts.a: src/hsts.go
+src/main.a: src/main.go
+tests/hsts.a: tests/hsts.go
+tests/main.a: tests/main.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