summaryrefslogtreecommitdiff
path: root/deps.mk
blob: ecabc06295341dedb7c74791ffadd626d9fba915 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
libs.go = \
	src/glaze.go \
	tests/glaze.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/glaze.a:	src/glaze.go
src/main.a:	src/main.go
tests/glaze.a:	tests/glaze.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