summaryrefslogtreecommitdiff
path: root/deps.mk
blob: 92b60112e0b3a812b18892ffd79f5480d7c91bee (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
catalogs.en.msg = src/pindaiba.en.msg
catalogs.msg = $(catalogs.en.msg)


sources.c = \
	src/catalog.c \
	src/cmp.c \
	src/hash.c \
	src/i18n.c \
	src/lib.c \
	src/logerr.c \
	src/math.c \
	src/random.c \
	src/set.c \
	src/sorted-vector.c \
	src/string.c \
	src/testing.c \
	src/trace.c \
	src/tree.c \
	src/util.c \
	src/vector.c \

tests.c = \
	tests/catalog.c \
	tests/cmp.c \
	tests/hash.c \
	tests/i18n.c \
	tests/lib.c \
	tests/logerr.c \
	tests/math.c \
	tests/random.c \
	tests/set.c \
	tests/sorted-vector.c \
	tests/string.c \
	tests/testing.c \
	tests/trace.c \
	tests/tree.c \
	tests/util.c \
	tests/vector.c \

src/catalog.o:	src/catalog.h
src/cmp.o:	src/cmp.h
src/hash.o:	src/hash.h
src/i18n.o:	src/i18n.h
src/lib.o:	src/lib.h
src/logerr.o:	src/logerr.h
src/math.o:	src/math.h
src/random.o:	src/random.h
src/set.o:	src/set.h
src/sorted-vector.o:	src/sorted-vector.h
src/string.o:	src/string.h
src/testing.o:	src/testing.h
src/trace.o:	src/trace.h
src/tree.o:	src/tree.h
src/util.o:	src/util.h
src/vector.o:	src/vector.h

tests/catalog.o:	src/catalog.c	src/catalog.h
tests/cmp.o:	src/cmp.c	src/cmp.h
tests/hash.o:	src/hash.c	src/hash.h
tests/i18n.o:	src/i18n.c	src/i18n.h
tests/lib.o:	src/lib.c	src/lib.h
tests/logerr.o:	src/logerr.c	src/logerr.h
tests/math.o:	src/math.c	src/math.h
tests/random.o:	src/random.c	src/random.h
tests/set.o:	src/set.c	src/set.h
tests/sorted-vector.o:	src/sorted-vector.c	src/sorted-vector.h
tests/string.o:	src/string.c	src/string.h
tests/testing.o:	src/testing.c	src/testing.h
tests/trace.o:	src/trace.c	src/trace.h
tests/tree.o:	src/tree.c	src/tree.h
tests/util.o:	src/util.c	src/util.h
tests/vector.o:	src/vector.c	src/vector.h

tests/catalog.a:	tests/catalog.o
tests/cmp.a:	tests/cmp.o
tests/hash.a:	tests/hash.o
tests/i18n.a:	tests/i18n.o
tests/lib.a:	tests/lib.o
tests/logerr.a:	tests/logerr.o
tests/math.a:	tests/math.o
tests/random.a:	tests/random.o
tests/set.a:	tests/set.o
tests/sorted-vector.a:	tests/sorted-vector.o
tests/string.a:	tests/string.o
tests/testing.a:	tests/testing.o
tests/trace.a:	tests/trace.o
tests/tree.a:	tests/tree.o
tests/util.a:	tests/util.o
tests/vector.a:	tests/vector.o

tests/catalog.bin-check:	tests/catalog.bin
tests/cmp.bin-check:	tests/cmp.bin
tests/hash.bin-check:	tests/hash.bin
tests/i18n.bin-check:	tests/i18n.bin
tests/lib.bin-check:	tests/lib.bin
tests/logerr.bin-check:	tests/logerr.bin
tests/math.bin-check:	tests/math.bin
tests/random.bin-check:	tests/random.bin
tests/set.bin-check:	tests/set.bin
tests/sorted-vector.bin-check:	tests/sorted-vector.bin
tests/string.bin-check:	tests/string.bin
tests/testing.bin-check:	tests/testing.bin
tests/trace.bin-check:	tests/trace.bin
tests/tree.bin-check:	tests/tree.bin
tests/util.bin-check:	tests/util.bin
tests/vector.bin-check:	tests/vector.bin


src/catalog.o: src/logerr.h
src/cmp.o:
src/hash.o: src/logerr.h src/random.h
src/i18n.o: src/catalog.h
src/lib.o: src/logerr.h
src/logerr.o:
src/math.o:
src/random.o: src/logerr.h src/util.h
src/set.o: src/hash.h src/logerr.h src/tree.h src/util.h src/vector.h
src/sorted-vector.o: src/logerr.h src/util.h src/vector.h
src/string.o: src/logerr.h src/math.h src/util.h
src/testing.o:
src/trace.o: src/logerr.h
src/tree.o: src/logerr.h src/util.h
src/util.o: src/logerr.h
src/vector.o: src/catalog.h src/i18n.h src/logerr.h src/math.h src/util.h

tests/catalog.o: src/logerr.h src/testing.h src/util.h tests/slurp.h
tests/cmp.o: src/testing.h
tests/hash.o: src/logerr.h src/random.h src/testing.h
tests/i18n.o: src/catalog.h src/logerr.h
tests/lib.o: src/logerr.h
tests/logerr.o: src/testing.h src/util.h tests/slurp.h
tests/math.o: src/testing.h
tests/random.o: src/logerr.h src/util.h src/testing.h
tests/set.o: src/hash.h src/logerr.h src/tree.h src/util.h src/vector.h src/testing.h
tests/sorted-vector.o: src/logerr.h src/util.h src/testing.h
tests/string.o: src/logerr.h src/math.h src/util.h src/testing.h
tests/testing.o:
tests/trace.o: src/logerr.h tests/slurp.h src/testing.h src/util.h
tests/tree.o: src/logerr.h src/util.h src/testing.h
tests/util.o: src/logerr.h src/testing.h tests/slurp.h
tests/vector.o: src/catalog.h src/i18n.h src/logerr.h src/math.h src/util.h src/testing.h

tests/catalog.a: src/logerr.o src/testing.o src/util.o tests/slurp.o
tests/cmp.a: src/testing.o
tests/hash.a: src/logerr.o src/random.o src/testing.o src/util.o
tests/i18n.a: src/catalog.o src/logerr.o
tests/lib.a: src/logerr.o
tests/logerr.a: src/testing.o src/util.o tests/slurp.o
tests/math.a: src/testing.o
tests/random.a: src/logerr.o src/testing.o src/util.o
tests/set.a: src/catalog.o src/hash.o src/i18n.o src/logerr.o src/math.o src/random.o src/testing.o src/tree.o src/util.o src/vector.o
tests/sorted-vector.a: src/logerr.o src/testing.o src/util.o src/vector.o
tests/string.a: src/logerr.o src/math.o src/testing.o src/util.o
tests/testing.a:
tests/trace.a: src/logerr.o tests/slurp.o src/testing.o src/util.o
tests/tree.a: src/logerr.o src/testing.o src/util.o
tests/util.a: src/logerr.o src/testing.o tests/slurp.o
tests/vector.a: src/catalog.o src/i18n.o src/logerr.o src/math.o src/testing.o src/util.o