# Mention default target. all: # Implicit rule to compile C++ files. Modify to your taste. %.o: %.cc g++ -c -O2 -Wall -Wextra -pedantic $< # Components of the library. library-objects = \ BigUnsigned.o \ BigInteger.o \ BigIntegerAlgorithms.o \ BigUnsignedInABase.o \ BigIntegerUtils.o \ library-headers = \ NumberlikeArray.hh \ BigUnsigned.hh \ BigInteger.hh \ BigIntegerAlgorithms.hh \ BigUnsignedInABase.hh \ BigIntegerLibrary.hh \ # To ``make the library'', make all its objects using the implicit rule. library: $(library-objects) # Conservatively assume that all the objects depend on all the headers. $(library-objects): $(library-headers) # TESTSUITE (NOTE: Currently expects a 32-bit system) # Compiling the testsuite. testsuite.o: $(library-headers) testsuite: testsuite.o $(library-objects) g++ $^ -o $@ # Extract the expected output from the testsuite source. testsuite.expected: testsuite.cc nl -ba -p -s: $< | sed -nre 's,^ +([0-9]+):.*//([^ ]),Line \1: \2,p' >$@ # Run the testsuite. .PHONY: test test: testsuite testsuite.expected ./run-testsuite testsuite-cleanfiles = \ testsuite.o testsuite testsuite.expected \ testsuite.out testsuite.err # The rules below build a program that uses the library. They are preset to # build ``sample'' from ``sample.cc''. You can change the name(s) of the # source file(s) and program file to build your own program, or you can write # your own Makefile. # Components of the program. program = sample program-objects = sample.o # Conservatively assume all the program source files depend on all the library # headers. You can change this if it is not the case. $(program-objects) : $(library-headers) # How to link the program. The implicit rule covers individual objects. $(program) : $(program-objects) $(library-objects) g++ $^ -o $@ # Delete all generated files we know about. clean : rm -f $(library-objects) $(testsuite-cleanfiles) $(program-objects) $(program) # I removed the *.tag dependency tracking system because it had few advantages # over manually entering all the dependencies. If there were a portable, # reliable dependency tracking system, I'd use it, but I know of no such; # cons and depcomp are almost good enough. # Come back and define default target. all : library $(program) put class='txt' type='search' size='10' name='q' value=''/>
path: root/techlibs/intel/synth_intel.cc
blob: 639cba2c27158eb64ea9ab0ed8b8cea0f8cf6d17 (plain)
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259