about summary refs log tree commit diff stats
path: root/tangle/makefile
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-05-28 13:23:05 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-05-28 13:23:05 -0700
commita3056e665f4d200f46e5282921c0af23cdd55a85 (patch)
treea7d2f09bb94132705fe62d7f985408aad21dc53d /tangle/makefile
parent68c0b583ca09ff8f958c2c2738571a03d5e036d3 (diff)
downloadmu-a3056e665f4d200f46e5282921c0af23cdd55a85.tar.gz
1500
Diffstat (limited to 'tangle/makefile')
-rw-r--r--tangle/makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/tangle/makefile b/tangle/makefile
index caf13965..1086f287 100644
--- a/tangle/makefile
+++ b/tangle/makefile
@@ -1,6 +1,11 @@
 tangle: makefile type_list function_list file_list test_file_list test_list
 	c++ -g -O3 -Wall -Wextra -fno-strict-aliasing boot.cc -o tangle
 
+.PHONY: test
+
+test: tangle
+	./tangle test
+
 type_list: boot.cc [0-9]*.cc
 	@# assumes struct decl has space before '{'
 	@grep -h "^struct .* {" [0-9]*.cc |perl -pwe 's/(struct *[^ ]*).*/$$1;/' > type_list
land.net> 1999-05-06 00:54:12 -0400 committer Thomas E. Dickey <dickey@invisible-island.net> 1999-05-06 00:54:12 -0400 snapshot of project "lynx", label v2-8-2dev_26' href='/ingrix/lynx-snapshots/commit/lynx_help/lynx-dev.html?id=aa7067e195c6612fb732055a86ccea8158b17cfd'>aa7067e1 ^
b223937f ^


a735f5ad ^
b223937f ^

8f8c57cc ^
b223937f ^
aa7067e1 ^
b223937f ^




d3f9d547 ^
b223937f ^
a4a7d3a3 ^
d3f9d547 ^
b223937f ^
aa7067e1 ^
b223937f ^

a90a9a40 ^
b223937f ^




a90a9a40 ^
d3f9d547 ^
b223937f ^
aa7067e1 ^
b223937f ^

aa7067e1 ^



b223937f ^




aa7067e1 ^

b223937f ^
8f8c57cc ^
b223937f ^
aa7067e1 ^
b223937f ^

aa7067e1 ^



b223937f ^



aa7067e1 ^
b223937f ^













aa7067e1 ^
b223937f ^







aa7067e1 ^

b223937f ^

aa7067e1 ^

b223937f ^


aa7067e1 ^
b223937f ^


aa7067e1 ^



b223937f ^





d3f9d547 ^
b223937f ^


8f8c57cc ^
b223937f ^
aa7067e1 ^
b223937f ^

a4a7d3a3 ^
8f8c57cc ^
8f8c57cc ^

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