Fossil SCM
Moved common large lists of header files into Make variables.
Commit
4594b4e62859ffaab138cd1f9e9570c5ef964a7c
Parent
fc952557850fd09…
1 file changed
+141
-47
+141
-47
| --- src/main.mk | ||
| +++ src/main.mk | ||
| @@ -145,10 +145,104 @@ | ||
| 145 | 145 | wiki.o \ |
| 146 | 146 | wikiformat.o \ |
| 147 | 147 | xfer.o \ |
| 148 | 148 | zip.o |
| 149 | 149 | |
| 150 | +HDR = \ | |
| 151 | + add.h \ | |
| 152 | + blob.h \ | |
| 153 | + cgi.h \ | |
| 154 | + checkin.h \ | |
| 155 | + checkout.h \ | |
| 156 | + clearsign.h \ | |
| 157 | + clone.h \ | |
| 158 | + comformat.h \ | |
| 159 | + construct.h \ | |
| 160 | + content.h \ | |
| 161 | + db.h \ | |
| 162 | + delta.h \ | |
| 163 | + deltacmd.h \ | |
| 164 | + descendents.h \ | |
| 165 | + diff.h \ | |
| 166 | + diffcmd.h \ | |
| 167 | + encode.h \ | |
| 168 | + file.h \ | |
| 169 | + http.h \ | |
| 170 | + info.h \ | |
| 171 | + login.h \ | |
| 172 | + main.h \ | |
| 173 | + manifest.h \ | |
| 174 | + md5.h \ | |
| 175 | + merge.h \ | |
| 176 | + merge3.h \ | |
| 177 | + name.h \ | |
| 178 | + pivot.h \ | |
| 179 | + printf.h \ | |
| 180 | + rebuild.h \ | |
| 181 | + schema.h \ | |
| 182 | + setup.h \ | |
| 183 | + sha1.h \ | |
| 184 | + style.h \ | |
| 185 | + sync.h \ | |
| 186 | + timeline.h \ | |
| 187 | + update.h \ | |
| 188 | + url.h \ | |
| 189 | + user.h \ | |
| 190 | + verify.h \ | |
| 191 | + vfile.h \ | |
| 192 | + wiki.h \ | |
| 193 | + wikiformat.h \ | |
| 194 | + xfer.h \ | |
| 195 | + zip.h | |
| 196 | + | |
| 197 | +MHDR = \ | |
| 198 | + add_.c:add.h \ | |
| 199 | + blob_.c:blob.h \ | |
| 200 | + cgi_.c:cgi.h \ | |
| 201 | + checkin_.c:checkin.h \ | |
| 202 | + checkout_.c:checkout.h \ | |
| 203 | + clearsign_.c:clearsign.h \ | |
| 204 | + clone_.c:clone.h \ | |
| 205 | + comformat_.c:comformat.h \ | |
| 206 | + construct_.c:construct.h \ | |
| 207 | + content_.c:content.h \ | |
| 208 | + db_.c:db.h \ | |
| 209 | + delta_.c:delta.h \ | |
| 210 | + deltacmd_.c:deltacmd.h \ | |
| 211 | + descendents_.c:descendents.h \ | |
| 212 | + diff_.c:diff.h \ | |
| 213 | + diffcmd_.c:diffcmd.h \ | |
| 214 | + encode_.c:encode.h \ | |
| 215 | + file_.c:file.h \ | |
| 216 | + http_.c:http.h \ | |
| 217 | + info_.c:info.h \ | |
| 218 | + login_.c:login.h \ | |
| 219 | + main_.c:main.h \ | |
| 220 | + manifest_.c:manifest.h \ | |
| 221 | + md5_.c:md5.h \ | |
| 222 | + merge_.c:merge.h \ | |
| 223 | + merge3_.c:merge3.h \ | |
| 224 | + name_.c:name.h \ | |
| 225 | + pivot_.c:pivot.h \ | |
| 226 | + printf_.c:printf.h \ | |
| 227 | + rebuild_.c:rebuild.h \ | |
| 228 | + schema_.c:schema.h \ | |
| 229 | + setup_.c:setup.h \ | |
| 230 | + sha1_.c:sha1.h \ | |
| 231 | + style_.c:style.h \ | |
| 232 | + sync_.c:sync.h \ | |
| 233 | + timeline_.c:timeline.h \ | |
| 234 | + update_.c:update.h \ | |
| 235 | + url_.c:url.h \ | |
| 236 | + user_.c:user.h \ | |
| 237 | + verify_.c:verify.h \ | |
| 238 | + vfile_.c:vfile.h \ | |
| 239 | + wiki_.c:wiki.h \ | |
| 240 | + wikiformat_.c:wikiformat.h \ | |
| 241 | + xfer_.c:xfer.h \ | |
| 242 | + zip_.c:zip.h | |
| 243 | + | |
| 150 | 244 | APPNAME = fossil$(E) |
| 151 | 245 | |
| 152 | 246 | |
| 153 | 247 | |
| 154 | 248 | all: $(APPNAME) |
| @@ -178,14 +272,14 @@ | ||
| 178 | 272 | $(TCC) -o $(APPNAME) $(OBJ) sqlite3.o $(LIB) |
| 179 | 273 | |
| 180 | 274 | clean: |
| 181 | 275 | rm -f *.o *_.c $(APPNAME) VERSION.h |
| 182 | 276 | rm -f translate makeheaders mkindex page_index.h headers |
| 183 | - rm -f add.h blob.h cgi.h checkin.h checkout.h clearsign.h clone.h comformat.h construct.h content.h db.h delta.h deltacmd.h descendents.h diff.h diffcmd.h encode.h file.h http.h info.h login.h main.h manifest.h md5.h merge.h merge3.h name.h pivot.h printf.h rebuild.h schema.h setup.h sha1.h style.h sync.h timeline.h update.h url.h user.h verify.h vfile.h wiki.h wikiformat.h xfer.h zip.h | |
| 277 | + rm -f $(HDR) | |
| 184 | 278 | |
| 185 | 279 | headers: makeheaders mkindex $(TRANS_SRC) ./VERSION.h |
| 186 | - ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 280 | + ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 187 | 281 | ./mkindex $(TRANS_SRC) >page_index.h |
| 188 | 282 | touch headers |
| 189 | 283 | |
| 190 | 284 | add_.c: $(SRCDIR)/add.c $(SRCDIR)/VERSION translate |
| 191 | 285 | ./translate $(SRCDIR)/add.c | sed -f $(SRCDIR)/VERSION >add_.c |
| @@ -192,451 +286,451 @@ | ||
| 192 | 286 | |
| 193 | 287 | add.o: add_.c add.h $(SRCDIR)/config.h |
| 194 | 288 | $(XTCC) -o add.o -c add_.c |
| 195 | 289 | |
| 196 | 290 | add.h: makeheaders |
| 197 | - ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 291 | + ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 198 | 292 | touch headers |
| 199 | 293 | |
| 200 | 294 | blob_.c: $(SRCDIR)/blob.c $(SRCDIR)/VERSION translate |
| 201 | 295 | ./translate $(SRCDIR)/blob.c | sed -f $(SRCDIR)/VERSION >blob_.c |
| 202 | 296 | |
| 203 | 297 | blob.o: blob_.c blob.h $(SRCDIR)/config.h |
| 204 | 298 | $(XTCC) -o blob.o -c blob_.c |
| 205 | 299 | |
| 206 | 300 | blob.h: makeheaders |
| 207 | - ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 301 | + ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 208 | 302 | touch headers |
| 209 | 303 | |
| 210 | 304 | cgi_.c: $(SRCDIR)/cgi.c $(SRCDIR)/VERSION translate |
| 211 | 305 | ./translate $(SRCDIR)/cgi.c | sed -f $(SRCDIR)/VERSION >cgi_.c |
| 212 | 306 | |
| 213 | 307 | cgi.o: cgi_.c cgi.h $(SRCDIR)/config.h |
| 214 | 308 | $(XTCC) -o cgi.o -c cgi_.c |
| 215 | 309 | |
| 216 | 310 | cgi.h: makeheaders |
| 217 | - ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 311 | + ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 218 | 312 | touch headers |
| 219 | 313 | |
| 220 | 314 | checkin_.c: $(SRCDIR)/checkin.c $(SRCDIR)/VERSION translate |
| 221 | 315 | ./translate $(SRCDIR)/checkin.c | sed -f $(SRCDIR)/VERSION >checkin_.c |
| 222 | 316 | |
| 223 | 317 | checkin.o: checkin_.c checkin.h $(SRCDIR)/config.h |
| 224 | 318 | $(XTCC) -o checkin.o -c checkin_.c |
| 225 | 319 | |
| 226 | 320 | checkin.h: makeheaders |
| 227 | - ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 321 | + ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 228 | 322 | touch headers |
| 229 | 323 | |
| 230 | 324 | checkout_.c: $(SRCDIR)/checkout.c $(SRCDIR)/VERSION translate |
| 231 | 325 | ./translate $(SRCDIR)/checkout.c | sed -f $(SRCDIR)/VERSION >checkout_.c |
| 232 | 326 | |
| 233 | 327 | checkout.o: checkout_.c checkout.h $(SRCDIR)/config.h |
| 234 | 328 | $(XTCC) -o checkout.o -c checkout_.c |
| 235 | 329 | |
| 236 | 330 | checkout.h: makeheaders |
| 237 | - ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 331 | + ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 238 | 332 | touch headers |
| 239 | 333 | |
| 240 | 334 | clearsign_.c: $(SRCDIR)/clearsign.c $(SRCDIR)/VERSION translate |
| 241 | 335 | ./translate $(SRCDIR)/clearsign.c | sed -f $(SRCDIR)/VERSION >clearsign_.c |
| 242 | 336 | |
| 243 | 337 | clearsign.o: clearsign_.c clearsign.h $(SRCDIR)/config.h |
| 244 | 338 | $(XTCC) -o clearsign.o -c clearsign_.c |
| 245 | 339 | |
| 246 | 340 | clearsign.h: makeheaders |
| 247 | - ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 341 | + ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 248 | 342 | touch headers |
| 249 | 343 | |
| 250 | 344 | clone_.c: $(SRCDIR)/clone.c $(SRCDIR)/VERSION translate |
| 251 | 345 | ./translate $(SRCDIR)/clone.c | sed -f $(SRCDIR)/VERSION >clone_.c |
| 252 | 346 | |
| 253 | 347 | clone.o: clone_.c clone.h $(SRCDIR)/config.h |
| 254 | 348 | $(XTCC) -o clone.o -c clone_.c |
| 255 | 349 | |
| 256 | 350 | clone.h: makeheaders |
| 257 | - ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 351 | + ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 258 | 352 | touch headers |
| 259 | 353 | |
| 260 | 354 | comformat_.c: $(SRCDIR)/comformat.c $(SRCDIR)/VERSION translate |
| 261 | 355 | ./translate $(SRCDIR)/comformat.c | sed -f $(SRCDIR)/VERSION >comformat_.c |
| 262 | 356 | |
| 263 | 357 | comformat.o: comformat_.c comformat.h $(SRCDIR)/config.h |
| 264 | 358 | $(XTCC) -o comformat.o -c comformat_.c |
| 265 | 359 | |
| 266 | 360 | comformat.h: makeheaders |
| 267 | - ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 361 | + ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 268 | 362 | touch headers |
| 269 | 363 | |
| 270 | 364 | construct_.c: $(SRCDIR)/construct.c $(SRCDIR)/VERSION translate |
| 271 | 365 | ./translate $(SRCDIR)/construct.c | sed -f $(SRCDIR)/VERSION >construct_.c |
| 272 | 366 | |
| 273 | 367 | construct.o: construct_.c construct.h $(SRCDIR)/config.h |
| 274 | 368 | $(XTCC) -o construct.o -c construct_.c |
| 275 | 369 | |
| 276 | 370 | construct.h: makeheaders |
| 277 | - ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 371 | + ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 278 | 372 | touch headers |
| 279 | 373 | |
| 280 | 374 | content_.c: $(SRCDIR)/content.c $(SRCDIR)/VERSION translate |
| 281 | 375 | ./translate $(SRCDIR)/content.c | sed -f $(SRCDIR)/VERSION >content_.c |
| 282 | 376 | |
| 283 | 377 | content.o: content_.c content.h $(SRCDIR)/config.h |
| 284 | 378 | $(XTCC) -o content.o -c content_.c |
| 285 | 379 | |
| 286 | 380 | content.h: makeheaders |
| 287 | - ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 381 | + ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 288 | 382 | touch headers |
| 289 | 383 | |
| 290 | 384 | db_.c: $(SRCDIR)/db.c $(SRCDIR)/VERSION translate |
| 291 | 385 | ./translate $(SRCDIR)/db.c | sed -f $(SRCDIR)/VERSION >db_.c |
| 292 | 386 | |
| 293 | 387 | db.o: db_.c db.h $(SRCDIR)/config.h |
| 294 | 388 | $(XTCC) -o db.o -c db_.c |
| 295 | 389 | |
| 296 | 390 | db.h: makeheaders |
| 297 | - ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 391 | + ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 298 | 392 | touch headers |
| 299 | 393 | |
| 300 | 394 | delta_.c: $(SRCDIR)/delta.c $(SRCDIR)/VERSION translate |
| 301 | 395 | ./translate $(SRCDIR)/delta.c | sed -f $(SRCDIR)/VERSION >delta_.c |
| 302 | 396 | |
| 303 | 397 | delta.o: delta_.c delta.h $(SRCDIR)/config.h |
| 304 | 398 | $(XTCC) -o delta.o -c delta_.c |
| 305 | 399 | |
| 306 | 400 | delta.h: makeheaders |
| 307 | - ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 401 | + ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 308 | 402 | touch headers |
| 309 | 403 | |
| 310 | 404 | deltacmd_.c: $(SRCDIR)/deltacmd.c $(SRCDIR)/VERSION translate |
| 311 | 405 | ./translate $(SRCDIR)/deltacmd.c | sed -f $(SRCDIR)/VERSION >deltacmd_.c |
| 312 | 406 | |
| 313 | 407 | deltacmd.o: deltacmd_.c deltacmd.h $(SRCDIR)/config.h |
| 314 | 408 | $(XTCC) -o deltacmd.o -c deltacmd_.c |
| 315 | 409 | |
| 316 | 410 | deltacmd.h: makeheaders |
| 317 | - ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 411 | + ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 318 | 412 | touch headers |
| 319 | 413 | |
| 320 | 414 | descendents_.c: $(SRCDIR)/descendents.c $(SRCDIR)/VERSION translate |
| 321 | 415 | ./translate $(SRCDIR)/descendents.c | sed -f $(SRCDIR)/VERSION >descendents_.c |
| 322 | 416 | |
| 323 | 417 | descendents.o: descendents_.c descendents.h $(SRCDIR)/config.h |
| 324 | 418 | $(XTCC) -o descendents.o -c descendents_.c |
| 325 | 419 | |
| 326 | 420 | descendents.h: makeheaders |
| 327 | - ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 421 | + ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 328 | 422 | touch headers |
| 329 | 423 | |
| 330 | 424 | diff_.c: $(SRCDIR)/diff.c $(SRCDIR)/VERSION translate |
| 331 | 425 | ./translate $(SRCDIR)/diff.c | sed -f $(SRCDIR)/VERSION >diff_.c |
| 332 | 426 | |
| 333 | 427 | diff.o: diff_.c diff.h $(SRCDIR)/config.h |
| 334 | 428 | $(XTCC) -o diff.o -c diff_.c |
| 335 | 429 | |
| 336 | 430 | diff.h: makeheaders |
| 337 | - ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 431 | + ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 338 | 432 | touch headers |
| 339 | 433 | |
| 340 | 434 | diffcmd_.c: $(SRCDIR)/diffcmd.c $(SRCDIR)/VERSION translate |
| 341 | 435 | ./translate $(SRCDIR)/diffcmd.c | sed -f $(SRCDIR)/VERSION >diffcmd_.c |
| 342 | 436 | |
| 343 | 437 | diffcmd.o: diffcmd_.c diffcmd.h $(SRCDIR)/config.h |
| 344 | 438 | $(XTCC) -o diffcmd.o -c diffcmd_.c |
| 345 | 439 | |
| 346 | 440 | diffcmd.h: makeheaders |
| 347 | - ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 441 | + ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 348 | 442 | touch headers |
| 349 | 443 | |
| 350 | 444 | encode_.c: $(SRCDIR)/encode.c $(SRCDIR)/VERSION translate |
| 351 | 445 | ./translate $(SRCDIR)/encode.c | sed -f $(SRCDIR)/VERSION >encode_.c |
| 352 | 446 | |
| 353 | 447 | encode.o: encode_.c encode.h $(SRCDIR)/config.h |
| 354 | 448 | $(XTCC) -o encode.o -c encode_.c |
| 355 | 449 | |
| 356 | 450 | encode.h: makeheaders |
| 357 | - ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 451 | + ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 358 | 452 | touch headers |
| 359 | 453 | |
| 360 | 454 | file_.c: $(SRCDIR)/file.c $(SRCDIR)/VERSION translate |
| 361 | 455 | ./translate $(SRCDIR)/file.c | sed -f $(SRCDIR)/VERSION >file_.c |
| 362 | 456 | |
| 363 | 457 | file.o: file_.c file.h $(SRCDIR)/config.h |
| 364 | 458 | $(XTCC) -o file.o -c file_.c |
| 365 | 459 | |
| 366 | 460 | file.h: makeheaders |
| 367 | - ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 461 | + ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 368 | 462 | touch headers |
| 369 | 463 | |
| 370 | 464 | http_.c: $(SRCDIR)/http.c $(SRCDIR)/VERSION translate |
| 371 | 465 | ./translate $(SRCDIR)/http.c | sed -f $(SRCDIR)/VERSION >http_.c |
| 372 | 466 | |
| 373 | 467 | http.o: http_.c http.h $(SRCDIR)/config.h |
| 374 | 468 | $(XTCC) -o http.o -c http_.c |
| 375 | 469 | |
| 376 | 470 | http.h: makeheaders |
| 377 | - ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 471 | + ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 378 | 472 | touch headers |
| 379 | 473 | |
| 380 | 474 | info_.c: $(SRCDIR)/info.c $(SRCDIR)/VERSION translate |
| 381 | 475 | ./translate $(SRCDIR)/info.c | sed -f $(SRCDIR)/VERSION >info_.c |
| 382 | 476 | |
| 383 | 477 | info.o: info_.c info.h $(SRCDIR)/config.h |
| 384 | 478 | $(XTCC) -o info.o -c info_.c |
| 385 | 479 | |
| 386 | 480 | info.h: makeheaders |
| 387 | - ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 481 | + ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 388 | 482 | touch headers |
| 389 | 483 | |
| 390 | 484 | login_.c: $(SRCDIR)/login.c $(SRCDIR)/VERSION translate |
| 391 | 485 | ./translate $(SRCDIR)/login.c | sed -f $(SRCDIR)/VERSION >login_.c |
| 392 | 486 | |
| 393 | 487 | login.o: login_.c login.h $(SRCDIR)/config.h |
| 394 | 488 | $(XTCC) -o login.o -c login_.c |
| 395 | 489 | |
| 396 | 490 | login.h: makeheaders |
| 397 | - ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 491 | + ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 398 | 492 | touch headers |
| 399 | 493 | |
| 400 | 494 | main_.c: $(SRCDIR)/main.c $(SRCDIR)/VERSION translate |
| 401 | 495 | ./translate $(SRCDIR)/main.c | sed -f $(SRCDIR)/VERSION >main_.c |
| 402 | 496 | |
| 403 | 497 | main.o: main_.c main.h page_index.h $(SRCDIR)/config.h |
| 404 | 498 | $(XTCC) -o main.o -c main_.c |
| 405 | 499 | |
| 406 | 500 | main.h: makeheaders |
| 407 | - ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 501 | + ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 408 | 502 | touch headers |
| 409 | 503 | |
| 410 | 504 | manifest_.c: $(SRCDIR)/manifest.c $(SRCDIR)/VERSION translate |
| 411 | 505 | ./translate $(SRCDIR)/manifest.c | sed -f $(SRCDIR)/VERSION >manifest_.c |
| 412 | 506 | |
| 413 | 507 | manifest.o: manifest_.c manifest.h $(SRCDIR)/config.h |
| 414 | 508 | $(XTCC) -o manifest.o -c manifest_.c |
| 415 | 509 | |
| 416 | 510 | manifest.h: makeheaders |
| 417 | - ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 511 | + ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 418 | 512 | touch headers |
| 419 | 513 | |
| 420 | 514 | md5_.c: $(SRCDIR)/md5.c $(SRCDIR)/VERSION translate |
| 421 | 515 | ./translate $(SRCDIR)/md5.c | sed -f $(SRCDIR)/VERSION >md5_.c |
| 422 | 516 | |
| 423 | 517 | md5.o: md5_.c md5.h $(SRCDIR)/config.h |
| 424 | 518 | $(XTCC) -o md5.o -c md5_.c |
| 425 | 519 | |
| 426 | 520 | md5.h: makeheaders |
| 427 | - ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 521 | + ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 428 | 522 | touch headers |
| 429 | 523 | |
| 430 | 524 | merge_.c: $(SRCDIR)/merge.c $(SRCDIR)/VERSION translate |
| 431 | 525 | ./translate $(SRCDIR)/merge.c | sed -f $(SRCDIR)/VERSION >merge_.c |
| 432 | 526 | |
| 433 | 527 | merge.o: merge_.c merge.h $(SRCDIR)/config.h |
| 434 | 528 | $(XTCC) -o merge.o -c merge_.c |
| 435 | 529 | |
| 436 | 530 | merge.h: makeheaders |
| 437 | - ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 531 | + ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 438 | 532 | touch headers |
| 439 | 533 | |
| 440 | 534 | merge3_.c: $(SRCDIR)/merge3.c $(SRCDIR)/VERSION translate |
| 441 | 535 | ./translate $(SRCDIR)/merge3.c | sed -f $(SRCDIR)/VERSION >merge3_.c |
| 442 | 536 | |
| 443 | 537 | merge3.o: merge3_.c merge3.h $(SRCDIR)/config.h |
| 444 | 538 | $(XTCC) -o merge3.o -c merge3_.c |
| 445 | 539 | |
| 446 | 540 | merge3.h: makeheaders |
| 447 | - ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 541 | + ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 448 | 542 | touch headers |
| 449 | 543 | |
| 450 | 544 | name_.c: $(SRCDIR)/name.c $(SRCDIR)/VERSION translate |
| 451 | 545 | ./translate $(SRCDIR)/name.c | sed -f $(SRCDIR)/VERSION >name_.c |
| 452 | 546 | |
| 453 | 547 | name.o: name_.c name.h $(SRCDIR)/config.h |
| 454 | 548 | $(XTCC) -o name.o -c name_.c |
| 455 | 549 | |
| 456 | 550 | name.h: makeheaders |
| 457 | - ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 551 | + ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 458 | 552 | touch headers |
| 459 | 553 | |
| 460 | 554 | pivot_.c: $(SRCDIR)/pivot.c $(SRCDIR)/VERSION translate |
| 461 | 555 | ./translate $(SRCDIR)/pivot.c | sed -f $(SRCDIR)/VERSION >pivot_.c |
| 462 | 556 | |
| 463 | 557 | pivot.o: pivot_.c pivot.h $(SRCDIR)/config.h |
| 464 | 558 | $(XTCC) -o pivot.o -c pivot_.c |
| 465 | 559 | |
| 466 | 560 | pivot.h: makeheaders |
| 467 | - ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 561 | + ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 468 | 562 | touch headers |
| 469 | 563 | |
| 470 | 564 | printf_.c: $(SRCDIR)/printf.c $(SRCDIR)/VERSION translate |
| 471 | 565 | ./translate $(SRCDIR)/printf.c | sed -f $(SRCDIR)/VERSION >printf_.c |
| 472 | 566 | |
| 473 | 567 | printf.o: printf_.c printf.h $(SRCDIR)/config.h |
| 474 | 568 | $(XTCC) -o printf.o -c printf_.c |
| 475 | 569 | |
| 476 | 570 | printf.h: makeheaders |
| 477 | - ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 571 | + ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 478 | 572 | touch headers |
| 479 | 573 | |
| 480 | 574 | rebuild_.c: $(SRCDIR)/rebuild.c $(SRCDIR)/VERSION translate |
| 481 | 575 | ./translate $(SRCDIR)/rebuild.c | sed -f $(SRCDIR)/VERSION >rebuild_.c |
| 482 | 576 | |
| 483 | 577 | rebuild.o: rebuild_.c rebuild.h $(SRCDIR)/config.h |
| 484 | 578 | $(XTCC) -o rebuild.o -c rebuild_.c |
| 485 | 579 | |
| 486 | 580 | rebuild.h: makeheaders |
| 487 | - ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 581 | + ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 488 | 582 | touch headers |
| 489 | 583 | |
| 490 | 584 | schema_.c: $(SRCDIR)/schema.c $(SRCDIR)/VERSION translate |
| 491 | 585 | ./translate $(SRCDIR)/schema.c | sed -f $(SRCDIR)/VERSION >schema_.c |
| 492 | 586 | |
| 493 | 587 | schema.o: schema_.c schema.h $(SRCDIR)/config.h |
| 494 | 588 | $(XTCC) -o schema.o -c schema_.c |
| 495 | 589 | |
| 496 | 590 | schema.h: makeheaders |
| 497 | - ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 591 | + ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 498 | 592 | touch headers |
| 499 | 593 | |
| 500 | 594 | setup_.c: $(SRCDIR)/setup.c $(SRCDIR)/VERSION translate |
| 501 | 595 | ./translate $(SRCDIR)/setup.c | sed -f $(SRCDIR)/VERSION >setup_.c |
| 502 | 596 | |
| 503 | 597 | setup.o: setup_.c setup.h $(SRCDIR)/config.h |
| 504 | 598 | $(XTCC) -o setup.o -c setup_.c |
| 505 | 599 | |
| 506 | 600 | setup.h: makeheaders |
| 507 | - ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 601 | + ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 508 | 602 | touch headers |
| 509 | 603 | |
| 510 | 604 | sha1_.c: $(SRCDIR)/sha1.c $(SRCDIR)/VERSION translate |
| 511 | 605 | ./translate $(SRCDIR)/sha1.c | sed -f $(SRCDIR)/VERSION >sha1_.c |
| 512 | 606 | |
| 513 | 607 | sha1.o: sha1_.c sha1.h $(SRCDIR)/config.h |
| 514 | 608 | $(XTCC) -o sha1.o -c sha1_.c |
| 515 | 609 | |
| 516 | 610 | sha1.h: makeheaders |
| 517 | - ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 611 | + ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 518 | 612 | touch headers |
| 519 | 613 | |
| 520 | 614 | style_.c: $(SRCDIR)/style.c $(SRCDIR)/VERSION translate |
| 521 | 615 | ./translate $(SRCDIR)/style.c | sed -f $(SRCDIR)/VERSION >style_.c |
| 522 | 616 | |
| 523 | 617 | style.o: style_.c style.h $(SRCDIR)/config.h |
| 524 | 618 | $(XTCC) -o style.o -c style_.c |
| 525 | 619 | |
| 526 | 620 | style.h: makeheaders |
| 527 | - ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 621 | + ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 528 | 622 | touch headers |
| 529 | 623 | |
| 530 | 624 | sync_.c: $(SRCDIR)/sync.c $(SRCDIR)/VERSION translate |
| 531 | 625 | ./translate $(SRCDIR)/sync.c | sed -f $(SRCDIR)/VERSION >sync_.c |
| 532 | 626 | |
| 533 | 627 | sync.o: sync_.c sync.h $(SRCDIR)/config.h |
| 534 | 628 | $(XTCC) -o sync.o -c sync_.c |
| 535 | 629 | |
| 536 | 630 | sync.h: makeheaders |
| 537 | - ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 631 | + ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 538 | 632 | touch headers |
| 539 | 633 | |
| 540 | 634 | timeline_.c: $(SRCDIR)/timeline.c $(SRCDIR)/VERSION translate |
| 541 | 635 | ./translate $(SRCDIR)/timeline.c | sed -f $(SRCDIR)/VERSION >timeline_.c |
| 542 | 636 | |
| 543 | 637 | timeline.o: timeline_.c timeline.h $(SRCDIR)/config.h |
| 544 | 638 | $(XTCC) -o timeline.o -c timeline_.c |
| 545 | 639 | |
| 546 | 640 | timeline.h: makeheaders |
| 547 | - ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 641 | + ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 548 | 642 | touch headers |
| 549 | 643 | |
| 550 | 644 | update_.c: $(SRCDIR)/update.c $(SRCDIR)/VERSION translate |
| 551 | 645 | ./translate $(SRCDIR)/update.c | sed -f $(SRCDIR)/VERSION >update_.c |
| 552 | 646 | |
| 553 | 647 | update.o: update_.c update.h $(SRCDIR)/config.h |
| 554 | 648 | $(XTCC) -o update.o -c update_.c |
| 555 | 649 | |
| 556 | 650 | update.h: makeheaders |
| 557 | - ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 651 | + ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 558 | 652 | touch headers |
| 559 | 653 | |
| 560 | 654 | url_.c: $(SRCDIR)/url.c $(SRCDIR)/VERSION translate |
| 561 | 655 | ./translate $(SRCDIR)/url.c | sed -f $(SRCDIR)/VERSION >url_.c |
| 562 | 656 | |
| 563 | 657 | url.o: url_.c url.h $(SRCDIR)/config.h |
| 564 | 658 | $(XTCC) -o url.o -c url_.c |
| 565 | 659 | |
| 566 | 660 | url.h: makeheaders |
| 567 | - ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 661 | + ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 568 | 662 | touch headers |
| 569 | 663 | |
| 570 | 664 | user_.c: $(SRCDIR)/user.c $(SRCDIR)/VERSION translate |
| 571 | 665 | ./translate $(SRCDIR)/user.c | sed -f $(SRCDIR)/VERSION >user_.c |
| 572 | 666 | |
| 573 | 667 | user.o: user_.c user.h $(SRCDIR)/config.h |
| 574 | 668 | $(XTCC) -o user.o -c user_.c |
| 575 | 669 | |
| 576 | 670 | user.h: makeheaders |
| 577 | - ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 671 | + ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 578 | 672 | touch headers |
| 579 | 673 | |
| 580 | 674 | verify_.c: $(SRCDIR)/verify.c $(SRCDIR)/VERSION translate |
| 581 | 675 | ./translate $(SRCDIR)/verify.c | sed -f $(SRCDIR)/VERSION >verify_.c |
| 582 | 676 | |
| 583 | 677 | verify.o: verify_.c verify.h $(SRCDIR)/config.h |
| 584 | 678 | $(XTCC) -o verify.o -c verify_.c |
| 585 | 679 | |
| 586 | 680 | verify.h: makeheaders |
| 587 | - ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 681 | + ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 588 | 682 | touch headers |
| 589 | 683 | |
| 590 | 684 | vfile_.c: $(SRCDIR)/vfile.c $(SRCDIR)/VERSION translate |
| 591 | 685 | ./translate $(SRCDIR)/vfile.c | sed -f $(SRCDIR)/VERSION >vfile_.c |
| 592 | 686 | |
| 593 | 687 | vfile.o: vfile_.c vfile.h $(SRCDIR)/config.h |
| 594 | 688 | $(XTCC) -o vfile.o -c vfile_.c |
| 595 | 689 | |
| 596 | 690 | vfile.h: makeheaders |
| 597 | - ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 691 | + ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 598 | 692 | touch headers |
| 599 | 693 | |
| 600 | 694 | wiki_.c: $(SRCDIR)/wiki.c $(SRCDIR)/VERSION translate |
| 601 | 695 | ./translate $(SRCDIR)/wiki.c | sed -f $(SRCDIR)/VERSION >wiki_.c |
| 602 | 696 | |
| 603 | 697 | wiki.o: wiki_.c wiki.h $(SRCDIR)/config.h |
| 604 | 698 | $(XTCC) -o wiki.o -c wiki_.c |
| 605 | 699 | |
| 606 | 700 | wiki.h: makeheaders |
| 607 | - ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 701 | + ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 608 | 702 | touch headers |
| 609 | 703 | |
| 610 | 704 | wikiformat_.c: $(SRCDIR)/wikiformat.c $(SRCDIR)/VERSION translate |
| 611 | 705 | ./translate $(SRCDIR)/wikiformat.c | sed -f $(SRCDIR)/VERSION >wikiformat_.c |
| 612 | 706 | |
| 613 | 707 | wikiformat.o: wikiformat_.c wikiformat.h $(SRCDIR)/config.h |
| 614 | 708 | $(XTCC) -o wikiformat.o -c wikiformat_.c |
| 615 | 709 | |
| 616 | 710 | wikiformat.h: makeheaders |
| 617 | - ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 711 | + ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 618 | 712 | touch headers |
| 619 | 713 | |
| 620 | 714 | xfer_.c: $(SRCDIR)/xfer.c $(SRCDIR)/VERSION translate |
| 621 | 715 | ./translate $(SRCDIR)/xfer.c | sed -f $(SRCDIR)/VERSION >xfer_.c |
| 622 | 716 | |
| 623 | 717 | xfer.o: xfer_.c xfer.h $(SRCDIR)/config.h |
| 624 | 718 | $(XTCC) -o xfer.o -c xfer_.c |
| 625 | 719 | |
| 626 | 720 | xfer.h: makeheaders |
| 627 | - ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 721 | + ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 628 | 722 | touch headers |
| 629 | 723 | |
| 630 | 724 | zip_.c: $(SRCDIR)/zip.c $(SRCDIR)/VERSION translate |
| 631 | 725 | ./translate $(SRCDIR)/zip.c | sed -f $(SRCDIR)/VERSION >zip_.c |
| 632 | 726 | |
| 633 | 727 | zip.o: zip_.c zip.h $(SRCDIR)/config.h |
| 634 | 728 | $(XTCC) -o zip.o -c zip_.c |
| 635 | 729 | |
| 636 | 730 | zip.h: makeheaders |
| 637 | - ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 731 | + ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h | |
| 638 | 732 | touch headers |
| 639 | 733 | |
| 640 | 734 | sqlite3.o: $(SRCDIR)/sqlite3.c |
| 641 | 735 | $(XTCC) -DSQLITE_OMIT_LOAD_EXTENSION=1 -DSQLITE_PRIVATE= -DTHREADSAFE=0 -DSQLITE_DEFAULT_FILE_FORMAT=4 -c $(SRCDIR)/sqlite3.c -o sqlite3.o |
| 642 | 736 | |
| 643 | 737 |
| --- src/main.mk | |
| +++ src/main.mk | |
| @@ -145,10 +145,104 @@ | |
| 145 | wiki.o \ |
| 146 | wikiformat.o \ |
| 147 | xfer.o \ |
| 148 | zip.o |
| 149 | |
| 150 | APPNAME = fossil$(E) |
| 151 | |
| 152 | |
| 153 | |
| 154 | all: $(APPNAME) |
| @@ -178,14 +272,14 @@ | |
| 178 | $(TCC) -o $(APPNAME) $(OBJ) sqlite3.o $(LIB) |
| 179 | |
| 180 | clean: |
| 181 | rm -f *.o *_.c $(APPNAME) VERSION.h |
| 182 | rm -f translate makeheaders mkindex page_index.h headers |
| 183 | rm -f add.h blob.h cgi.h checkin.h checkout.h clearsign.h clone.h comformat.h construct.h content.h db.h delta.h deltacmd.h descendents.h diff.h diffcmd.h encode.h file.h http.h info.h login.h main.h manifest.h md5.h merge.h merge3.h name.h pivot.h printf.h rebuild.h schema.h setup.h sha1.h style.h sync.h timeline.h update.h url.h user.h verify.h vfile.h wiki.h wikiformat.h xfer.h zip.h |
| 184 | |
| 185 | headers: makeheaders mkindex $(TRANS_SRC) ./VERSION.h |
| 186 | ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h |
| 187 | ./mkindex $(TRANS_SRC) >page_index.h |
| 188 | touch headers |
| 189 | |
| 190 | add_.c: $(SRCDIR)/add.c $(SRCDIR)/VERSION translate |
| 191 | ./translate $(SRCDIR)/add.c | sed -f $(SRCDIR)/VERSION >add_.c |
| @@ -192,451 +286,451 @@ | |
| 192 | |
| 193 | add.o: add_.c add.h $(SRCDIR)/config.h |
| 194 | $(XTCC) -o add.o -c add_.c |
| 195 | |
| 196 | add.h: makeheaders |
| 197 | ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h |
| 198 | touch headers |
| 199 | |
| 200 | blob_.c: $(SRCDIR)/blob.c $(SRCDIR)/VERSION translate |
| 201 | ./translate $(SRCDIR)/blob.c | sed -f $(SRCDIR)/VERSION >blob_.c |
| 202 | |
| 203 | blob.o: blob_.c blob.h $(SRCDIR)/config.h |
| 204 | $(XTCC) -o blob.o -c blob_.c |
| 205 | |
| 206 | blob.h: makeheaders |
| 207 | ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h |
| 208 | touch headers |
| 209 | |
| 210 | cgi_.c: $(SRCDIR)/cgi.c $(SRCDIR)/VERSION translate |
| 211 | ./translate $(SRCDIR)/cgi.c | sed -f $(SRCDIR)/VERSION >cgi_.c |
| 212 | |
| 213 | cgi.o: cgi_.c cgi.h $(SRCDIR)/config.h |
| 214 | $(XTCC) -o cgi.o -c cgi_.c |
| 215 | |
| 216 | cgi.h: makeheaders |
| 217 | ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h |
| 218 | touch headers |
| 219 | |
| 220 | checkin_.c: $(SRCDIR)/checkin.c $(SRCDIR)/VERSION translate |
| 221 | ./translate $(SRCDIR)/checkin.c | sed -f $(SRCDIR)/VERSION >checkin_.c |
| 222 | |
| 223 | checkin.o: checkin_.c checkin.h $(SRCDIR)/config.h |
| 224 | $(XTCC) -o checkin.o -c checkin_.c |
| 225 | |
| 226 | checkin.h: makeheaders |
| 227 | ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h |
| 228 | touch headers |
| 229 | |
| 230 | checkout_.c: $(SRCDIR)/checkout.c $(SRCDIR)/VERSION translate |
| 231 | ./translate $(SRCDIR)/checkout.c | sed -f $(SRCDIR)/VERSION >checkout_.c |
| 232 | |
| 233 | checkout.o: checkout_.c checkout.h $(SRCDIR)/config.h |
| 234 | $(XTCC) -o checkout.o -c checkout_.c |
| 235 | |
| 236 | checkout.h: makeheaders |
| 237 | ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h |
| 238 | touch headers |
| 239 | |
| 240 | clearsign_.c: $(SRCDIR)/clearsign.c $(SRCDIR)/VERSION translate |
| 241 | ./translate $(SRCDIR)/clearsign.c | sed -f $(SRCDIR)/VERSION >clearsign_.c |
| 242 | |
| 243 | clearsign.o: clearsign_.c clearsign.h $(SRCDIR)/config.h |
| 244 | $(XTCC) -o clearsign.o -c clearsign_.c |
| 245 | |
| 246 | clearsign.h: makeheaders |
| 247 | ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h |
| 248 | touch headers |
| 249 | |
| 250 | clone_.c: $(SRCDIR)/clone.c $(SRCDIR)/VERSION translate |
| 251 | ./translate $(SRCDIR)/clone.c | sed -f $(SRCDIR)/VERSION >clone_.c |
| 252 | |
| 253 | clone.o: clone_.c clone.h $(SRCDIR)/config.h |
| 254 | $(XTCC) -o clone.o -c clone_.c |
| 255 | |
| 256 | clone.h: makeheaders |
| 257 | ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h |
| 258 | touch headers |
| 259 | |
| 260 | comformat_.c: $(SRCDIR)/comformat.c $(SRCDIR)/VERSION translate |
| 261 | ./translate $(SRCDIR)/comformat.c | sed -f $(SRCDIR)/VERSION >comformat_.c |
| 262 | |
| 263 | comformat.o: comformat_.c comformat.h $(SRCDIR)/config.h |
| 264 | $(XTCC) -o comformat.o -c comformat_.c |
| 265 | |
| 266 | comformat.h: makeheaders |
| 267 | ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h |
| 268 | touch headers |
| 269 | |
| 270 | construct_.c: $(SRCDIR)/construct.c $(SRCDIR)/VERSION translate |
| 271 | ./translate $(SRCDIR)/construct.c | sed -f $(SRCDIR)/VERSION >construct_.c |
| 272 | |
| 273 | construct.o: construct_.c construct.h $(SRCDIR)/config.h |
| 274 | $(XTCC) -o construct.o -c construct_.c |
| 275 | |
| 276 | construct.h: makeheaders |
| 277 | ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h |
| 278 | touch headers |
| 279 | |
| 280 | content_.c: $(SRCDIR)/content.c $(SRCDIR)/VERSION translate |
| 281 | ./translate $(SRCDIR)/content.c | sed -f $(SRCDIR)/VERSION >content_.c |
| 282 | |
| 283 | content.o: content_.c content.h $(SRCDIR)/config.h |
| 284 | $(XTCC) -o content.o -c content_.c |
| 285 | |
| 286 | content.h: makeheaders |
| 287 | ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h |
| 288 | touch headers |
| 289 | |
| 290 | db_.c: $(SRCDIR)/db.c $(SRCDIR)/VERSION translate |
| 291 | ./translate $(SRCDIR)/db.c | sed -f $(SRCDIR)/VERSION >db_.c |
| 292 | |
| 293 | db.o: db_.c db.h $(SRCDIR)/config.h |
| 294 | $(XTCC) -o db.o -c db_.c |
| 295 | |
| 296 | db.h: makeheaders |
| 297 | ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h |
| 298 | touch headers |
| 299 | |
| 300 | delta_.c: $(SRCDIR)/delta.c $(SRCDIR)/VERSION translate |
| 301 | ./translate $(SRCDIR)/delta.c | sed -f $(SRCDIR)/VERSION >delta_.c |
| 302 | |
| 303 | delta.o: delta_.c delta.h $(SRCDIR)/config.h |
| 304 | $(XTCC) -o delta.o -c delta_.c |
| 305 | |
| 306 | delta.h: makeheaders |
| 307 | ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h |
| 308 | touch headers |
| 309 | |
| 310 | deltacmd_.c: $(SRCDIR)/deltacmd.c $(SRCDIR)/VERSION translate |
| 311 | ./translate $(SRCDIR)/deltacmd.c | sed -f $(SRCDIR)/VERSION >deltacmd_.c |
| 312 | |
| 313 | deltacmd.o: deltacmd_.c deltacmd.h $(SRCDIR)/config.h |
| 314 | $(XTCC) -o deltacmd.o -c deltacmd_.c |
| 315 | |
| 316 | deltacmd.h: makeheaders |
| 317 | ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h |
| 318 | touch headers |
| 319 | |
| 320 | descendents_.c: $(SRCDIR)/descendents.c $(SRCDIR)/VERSION translate |
| 321 | ./translate $(SRCDIR)/descendents.c | sed -f $(SRCDIR)/VERSION >descendents_.c |
| 322 | |
| 323 | descendents.o: descendents_.c descendents.h $(SRCDIR)/config.h |
| 324 | $(XTCC) -o descendents.o -c descendents_.c |
| 325 | |
| 326 | descendents.h: makeheaders |
| 327 | ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h |
| 328 | touch headers |
| 329 | |
| 330 | diff_.c: $(SRCDIR)/diff.c $(SRCDIR)/VERSION translate |
| 331 | ./translate $(SRCDIR)/diff.c | sed -f $(SRCDIR)/VERSION >diff_.c |
| 332 | |
| 333 | diff.o: diff_.c diff.h $(SRCDIR)/config.h |
| 334 | $(XTCC) -o diff.o -c diff_.c |
| 335 | |
| 336 | diff.h: makeheaders |
| 337 | ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h |
| 338 | touch headers |
| 339 | |
| 340 | diffcmd_.c: $(SRCDIR)/diffcmd.c $(SRCDIR)/VERSION translate |
| 341 | ./translate $(SRCDIR)/diffcmd.c | sed -f $(SRCDIR)/VERSION >diffcmd_.c |
| 342 | |
| 343 | diffcmd.o: diffcmd_.c diffcmd.h $(SRCDIR)/config.h |
| 344 | $(XTCC) -o diffcmd.o -c diffcmd_.c |
| 345 | |
| 346 | diffcmd.h: makeheaders |
| 347 | ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h |
| 348 | touch headers |
| 349 | |
| 350 | encode_.c: $(SRCDIR)/encode.c $(SRCDIR)/VERSION translate |
| 351 | ./translate $(SRCDIR)/encode.c | sed -f $(SRCDIR)/VERSION >encode_.c |
| 352 | |
| 353 | encode.o: encode_.c encode.h $(SRCDIR)/config.h |
| 354 | $(XTCC) -o encode.o -c encode_.c |
| 355 | |
| 356 | encode.h: makeheaders |
| 357 | ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h |
| 358 | touch headers |
| 359 | |
| 360 | file_.c: $(SRCDIR)/file.c $(SRCDIR)/VERSION translate |
| 361 | ./translate $(SRCDIR)/file.c | sed -f $(SRCDIR)/VERSION >file_.c |
| 362 | |
| 363 | file.o: file_.c file.h $(SRCDIR)/config.h |
| 364 | $(XTCC) -o file.o -c file_.c |
| 365 | |
| 366 | file.h: makeheaders |
| 367 | ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h |
| 368 | touch headers |
| 369 | |
| 370 | http_.c: $(SRCDIR)/http.c $(SRCDIR)/VERSION translate |
| 371 | ./translate $(SRCDIR)/http.c | sed -f $(SRCDIR)/VERSION >http_.c |
| 372 | |
| 373 | http.o: http_.c http.h $(SRCDIR)/config.h |
| 374 | $(XTCC) -o http.o -c http_.c |
| 375 | |
| 376 | http.h: makeheaders |
| 377 | ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h |
| 378 | touch headers |
| 379 | |
| 380 | info_.c: $(SRCDIR)/info.c $(SRCDIR)/VERSION translate |
| 381 | ./translate $(SRCDIR)/info.c | sed -f $(SRCDIR)/VERSION >info_.c |
| 382 | |
| 383 | info.o: info_.c info.h $(SRCDIR)/config.h |
| 384 | $(XTCC) -o info.o -c info_.c |
| 385 | |
| 386 | info.h: makeheaders |
| 387 | ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h |
| 388 | touch headers |
| 389 | |
| 390 | login_.c: $(SRCDIR)/login.c $(SRCDIR)/VERSION translate |
| 391 | ./translate $(SRCDIR)/login.c | sed -f $(SRCDIR)/VERSION >login_.c |
| 392 | |
| 393 | login.o: login_.c login.h $(SRCDIR)/config.h |
| 394 | $(XTCC) -o login.o -c login_.c |
| 395 | |
| 396 | login.h: makeheaders |
| 397 | ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h |
| 398 | touch headers |
| 399 | |
| 400 | main_.c: $(SRCDIR)/main.c $(SRCDIR)/VERSION translate |
| 401 | ./translate $(SRCDIR)/main.c | sed -f $(SRCDIR)/VERSION >main_.c |
| 402 | |
| 403 | main.o: main_.c main.h page_index.h $(SRCDIR)/config.h |
| 404 | $(XTCC) -o main.o -c main_.c |
| 405 | |
| 406 | main.h: makeheaders |
| 407 | ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h |
| 408 | touch headers |
| 409 | |
| 410 | manifest_.c: $(SRCDIR)/manifest.c $(SRCDIR)/VERSION translate |
| 411 | ./translate $(SRCDIR)/manifest.c | sed -f $(SRCDIR)/VERSION >manifest_.c |
| 412 | |
| 413 | manifest.o: manifest_.c manifest.h $(SRCDIR)/config.h |
| 414 | $(XTCC) -o manifest.o -c manifest_.c |
| 415 | |
| 416 | manifest.h: makeheaders |
| 417 | ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h |
| 418 | touch headers |
| 419 | |
| 420 | md5_.c: $(SRCDIR)/md5.c $(SRCDIR)/VERSION translate |
| 421 | ./translate $(SRCDIR)/md5.c | sed -f $(SRCDIR)/VERSION >md5_.c |
| 422 | |
| 423 | md5.o: md5_.c md5.h $(SRCDIR)/config.h |
| 424 | $(XTCC) -o md5.o -c md5_.c |
| 425 | |
| 426 | md5.h: makeheaders |
| 427 | ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h |
| 428 | touch headers |
| 429 | |
| 430 | merge_.c: $(SRCDIR)/merge.c $(SRCDIR)/VERSION translate |
| 431 | ./translate $(SRCDIR)/merge.c | sed -f $(SRCDIR)/VERSION >merge_.c |
| 432 | |
| 433 | merge.o: merge_.c merge.h $(SRCDIR)/config.h |
| 434 | $(XTCC) -o merge.o -c merge_.c |
| 435 | |
| 436 | merge.h: makeheaders |
| 437 | ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h |
| 438 | touch headers |
| 439 | |
| 440 | merge3_.c: $(SRCDIR)/merge3.c $(SRCDIR)/VERSION translate |
| 441 | ./translate $(SRCDIR)/merge3.c | sed -f $(SRCDIR)/VERSION >merge3_.c |
| 442 | |
| 443 | merge3.o: merge3_.c merge3.h $(SRCDIR)/config.h |
| 444 | $(XTCC) -o merge3.o -c merge3_.c |
| 445 | |
| 446 | merge3.h: makeheaders |
| 447 | ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h |
| 448 | touch headers |
| 449 | |
| 450 | name_.c: $(SRCDIR)/name.c $(SRCDIR)/VERSION translate |
| 451 | ./translate $(SRCDIR)/name.c | sed -f $(SRCDIR)/VERSION >name_.c |
| 452 | |
| 453 | name.o: name_.c name.h $(SRCDIR)/config.h |
| 454 | $(XTCC) -o name.o -c name_.c |
| 455 | |
| 456 | name.h: makeheaders |
| 457 | ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h |
| 458 | touch headers |
| 459 | |
| 460 | pivot_.c: $(SRCDIR)/pivot.c $(SRCDIR)/VERSION translate |
| 461 | ./translate $(SRCDIR)/pivot.c | sed -f $(SRCDIR)/VERSION >pivot_.c |
| 462 | |
| 463 | pivot.o: pivot_.c pivot.h $(SRCDIR)/config.h |
| 464 | $(XTCC) -o pivot.o -c pivot_.c |
| 465 | |
| 466 | pivot.h: makeheaders |
| 467 | ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h |
| 468 | touch headers |
| 469 | |
| 470 | printf_.c: $(SRCDIR)/printf.c $(SRCDIR)/VERSION translate |
| 471 | ./translate $(SRCDIR)/printf.c | sed -f $(SRCDIR)/VERSION >printf_.c |
| 472 | |
| 473 | printf.o: printf_.c printf.h $(SRCDIR)/config.h |
| 474 | $(XTCC) -o printf.o -c printf_.c |
| 475 | |
| 476 | printf.h: makeheaders |
| 477 | ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h |
| 478 | touch headers |
| 479 | |
| 480 | rebuild_.c: $(SRCDIR)/rebuild.c $(SRCDIR)/VERSION translate |
| 481 | ./translate $(SRCDIR)/rebuild.c | sed -f $(SRCDIR)/VERSION >rebuild_.c |
| 482 | |
| 483 | rebuild.o: rebuild_.c rebuild.h $(SRCDIR)/config.h |
| 484 | $(XTCC) -o rebuild.o -c rebuild_.c |
| 485 | |
| 486 | rebuild.h: makeheaders |
| 487 | ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h |
| 488 | touch headers |
| 489 | |
| 490 | schema_.c: $(SRCDIR)/schema.c $(SRCDIR)/VERSION translate |
| 491 | ./translate $(SRCDIR)/schema.c | sed -f $(SRCDIR)/VERSION >schema_.c |
| 492 | |
| 493 | schema.o: schema_.c schema.h $(SRCDIR)/config.h |
| 494 | $(XTCC) -o schema.o -c schema_.c |
| 495 | |
| 496 | schema.h: makeheaders |
| 497 | ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h |
| 498 | touch headers |
| 499 | |
| 500 | setup_.c: $(SRCDIR)/setup.c $(SRCDIR)/VERSION translate |
| 501 | ./translate $(SRCDIR)/setup.c | sed -f $(SRCDIR)/VERSION >setup_.c |
| 502 | |
| 503 | setup.o: setup_.c setup.h $(SRCDIR)/config.h |
| 504 | $(XTCC) -o setup.o -c setup_.c |
| 505 | |
| 506 | setup.h: makeheaders |
| 507 | ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h |
| 508 | touch headers |
| 509 | |
| 510 | sha1_.c: $(SRCDIR)/sha1.c $(SRCDIR)/VERSION translate |
| 511 | ./translate $(SRCDIR)/sha1.c | sed -f $(SRCDIR)/VERSION >sha1_.c |
| 512 | |
| 513 | sha1.o: sha1_.c sha1.h $(SRCDIR)/config.h |
| 514 | $(XTCC) -o sha1.o -c sha1_.c |
| 515 | |
| 516 | sha1.h: makeheaders |
| 517 | ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h |
| 518 | touch headers |
| 519 | |
| 520 | style_.c: $(SRCDIR)/style.c $(SRCDIR)/VERSION translate |
| 521 | ./translate $(SRCDIR)/style.c | sed -f $(SRCDIR)/VERSION >style_.c |
| 522 | |
| 523 | style.o: style_.c style.h $(SRCDIR)/config.h |
| 524 | $(XTCC) -o style.o -c style_.c |
| 525 | |
| 526 | style.h: makeheaders |
| 527 | ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h |
| 528 | touch headers |
| 529 | |
| 530 | sync_.c: $(SRCDIR)/sync.c $(SRCDIR)/VERSION translate |
| 531 | ./translate $(SRCDIR)/sync.c | sed -f $(SRCDIR)/VERSION >sync_.c |
| 532 | |
| 533 | sync.o: sync_.c sync.h $(SRCDIR)/config.h |
| 534 | $(XTCC) -o sync.o -c sync_.c |
| 535 | |
| 536 | sync.h: makeheaders |
| 537 | ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h |
| 538 | touch headers |
| 539 | |
| 540 | timeline_.c: $(SRCDIR)/timeline.c $(SRCDIR)/VERSION translate |
| 541 | ./translate $(SRCDIR)/timeline.c | sed -f $(SRCDIR)/VERSION >timeline_.c |
| 542 | |
| 543 | timeline.o: timeline_.c timeline.h $(SRCDIR)/config.h |
| 544 | $(XTCC) -o timeline.o -c timeline_.c |
| 545 | |
| 546 | timeline.h: makeheaders |
| 547 | ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h |
| 548 | touch headers |
| 549 | |
| 550 | update_.c: $(SRCDIR)/update.c $(SRCDIR)/VERSION translate |
| 551 | ./translate $(SRCDIR)/update.c | sed -f $(SRCDIR)/VERSION >update_.c |
| 552 | |
| 553 | update.o: update_.c update.h $(SRCDIR)/config.h |
| 554 | $(XTCC) -o update.o -c update_.c |
| 555 | |
| 556 | update.h: makeheaders |
| 557 | ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h |
| 558 | touch headers |
| 559 | |
| 560 | url_.c: $(SRCDIR)/url.c $(SRCDIR)/VERSION translate |
| 561 | ./translate $(SRCDIR)/url.c | sed -f $(SRCDIR)/VERSION >url_.c |
| 562 | |
| 563 | url.o: url_.c url.h $(SRCDIR)/config.h |
| 564 | $(XTCC) -o url.o -c url_.c |
| 565 | |
| 566 | url.h: makeheaders |
| 567 | ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h |
| 568 | touch headers |
| 569 | |
| 570 | user_.c: $(SRCDIR)/user.c $(SRCDIR)/VERSION translate |
| 571 | ./translate $(SRCDIR)/user.c | sed -f $(SRCDIR)/VERSION >user_.c |
| 572 | |
| 573 | user.o: user_.c user.h $(SRCDIR)/config.h |
| 574 | $(XTCC) -o user.o -c user_.c |
| 575 | |
| 576 | user.h: makeheaders |
| 577 | ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h |
| 578 | touch headers |
| 579 | |
| 580 | verify_.c: $(SRCDIR)/verify.c $(SRCDIR)/VERSION translate |
| 581 | ./translate $(SRCDIR)/verify.c | sed -f $(SRCDIR)/VERSION >verify_.c |
| 582 | |
| 583 | verify.o: verify_.c verify.h $(SRCDIR)/config.h |
| 584 | $(XTCC) -o verify.o -c verify_.c |
| 585 | |
| 586 | verify.h: makeheaders |
| 587 | ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h |
| 588 | touch headers |
| 589 | |
| 590 | vfile_.c: $(SRCDIR)/vfile.c $(SRCDIR)/VERSION translate |
| 591 | ./translate $(SRCDIR)/vfile.c | sed -f $(SRCDIR)/VERSION >vfile_.c |
| 592 | |
| 593 | vfile.o: vfile_.c vfile.h $(SRCDIR)/config.h |
| 594 | $(XTCC) -o vfile.o -c vfile_.c |
| 595 | |
| 596 | vfile.h: makeheaders |
| 597 | ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h |
| 598 | touch headers |
| 599 | |
| 600 | wiki_.c: $(SRCDIR)/wiki.c $(SRCDIR)/VERSION translate |
| 601 | ./translate $(SRCDIR)/wiki.c | sed -f $(SRCDIR)/VERSION >wiki_.c |
| 602 | |
| 603 | wiki.o: wiki_.c wiki.h $(SRCDIR)/config.h |
| 604 | $(XTCC) -o wiki.o -c wiki_.c |
| 605 | |
| 606 | wiki.h: makeheaders |
| 607 | ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h |
| 608 | touch headers |
| 609 | |
| 610 | wikiformat_.c: $(SRCDIR)/wikiformat.c $(SRCDIR)/VERSION translate |
| 611 | ./translate $(SRCDIR)/wikiformat.c | sed -f $(SRCDIR)/VERSION >wikiformat_.c |
| 612 | |
| 613 | wikiformat.o: wikiformat_.c wikiformat.h $(SRCDIR)/config.h |
| 614 | $(XTCC) -o wikiformat.o -c wikiformat_.c |
| 615 | |
| 616 | wikiformat.h: makeheaders |
| 617 | ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h |
| 618 | touch headers |
| 619 | |
| 620 | xfer_.c: $(SRCDIR)/xfer.c $(SRCDIR)/VERSION translate |
| 621 | ./translate $(SRCDIR)/xfer.c | sed -f $(SRCDIR)/VERSION >xfer_.c |
| 622 | |
| 623 | xfer.o: xfer_.c xfer.h $(SRCDIR)/config.h |
| 624 | $(XTCC) -o xfer.o -c xfer_.c |
| 625 | |
| 626 | xfer.h: makeheaders |
| 627 | ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h |
| 628 | touch headers |
| 629 | |
| 630 | zip_.c: $(SRCDIR)/zip.c $(SRCDIR)/VERSION translate |
| 631 | ./translate $(SRCDIR)/zip.c | sed -f $(SRCDIR)/VERSION >zip_.c |
| 632 | |
| 633 | zip.o: zip_.c zip.h $(SRCDIR)/config.h |
| 634 | $(XTCC) -o zip.o -c zip_.c |
| 635 | |
| 636 | zip.h: makeheaders |
| 637 | ./makeheaders add_.c:add.h blob_.c:blob.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h construct_.c:construct.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendents_.c:descendents.h diff_.c:diff.h diffcmd_.c:diffcmd.h encode_.c:encode.h file_.c:file.h http_.c:http.h info_.c:info.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h name_.c:name.h pivot_.c:pivot.h printf_.c:printf.h rebuild_.c:rebuild.h schema_.c:schema.h setup_.c:setup.h sha1_.c:sha1.h style_.c:style.h sync_.c:sync.h timeline_.c:timeline.h update_.c:update.h url_.c:url.h user_.c:user.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h xfer_.c:xfer.h zip_.c:zip.h $(SRCDIR)/sqlite3.h ./VERSION.h |
| 638 | touch headers |
| 639 | |
| 640 | sqlite3.o: $(SRCDIR)/sqlite3.c |
| 641 | $(XTCC) -DSQLITE_OMIT_LOAD_EXTENSION=1 -DSQLITE_PRIVATE= -DTHREADSAFE=0 -DSQLITE_DEFAULT_FILE_FORMAT=4 -c $(SRCDIR)/sqlite3.c -o sqlite3.o |
| 642 | |
| 643 |
| --- src/main.mk | |
| +++ src/main.mk | |
| @@ -145,10 +145,104 @@ | |
| 145 | wiki.o \ |
| 146 | wikiformat.o \ |
| 147 | xfer.o \ |
| 148 | zip.o |
| 149 | |
| 150 | HDR = \ |
| 151 | add.h \ |
| 152 | blob.h \ |
| 153 | cgi.h \ |
| 154 | checkin.h \ |
| 155 | checkout.h \ |
| 156 | clearsign.h \ |
| 157 | clone.h \ |
| 158 | comformat.h \ |
| 159 | construct.h \ |
| 160 | content.h \ |
| 161 | db.h \ |
| 162 | delta.h \ |
| 163 | deltacmd.h \ |
| 164 | descendents.h \ |
| 165 | diff.h \ |
| 166 | diffcmd.h \ |
| 167 | encode.h \ |
| 168 | file.h \ |
| 169 | http.h \ |
| 170 | info.h \ |
| 171 | login.h \ |
| 172 | main.h \ |
| 173 | manifest.h \ |
| 174 | md5.h \ |
| 175 | merge.h \ |
| 176 | merge3.h \ |
| 177 | name.h \ |
| 178 | pivot.h \ |
| 179 | printf.h \ |
| 180 | rebuild.h \ |
| 181 | schema.h \ |
| 182 | setup.h \ |
| 183 | sha1.h \ |
| 184 | style.h \ |
| 185 | sync.h \ |
| 186 | timeline.h \ |
| 187 | update.h \ |
| 188 | url.h \ |
| 189 | user.h \ |
| 190 | verify.h \ |
| 191 | vfile.h \ |
| 192 | wiki.h \ |
| 193 | wikiformat.h \ |
| 194 | xfer.h \ |
| 195 | zip.h |
| 196 | |
| 197 | MHDR = \ |
| 198 | add_.c:add.h \ |
| 199 | blob_.c:blob.h \ |
| 200 | cgi_.c:cgi.h \ |
| 201 | checkin_.c:checkin.h \ |
| 202 | checkout_.c:checkout.h \ |
| 203 | clearsign_.c:clearsign.h \ |
| 204 | clone_.c:clone.h \ |
| 205 | comformat_.c:comformat.h \ |
| 206 | construct_.c:construct.h \ |
| 207 | content_.c:content.h \ |
| 208 | db_.c:db.h \ |
| 209 | delta_.c:delta.h \ |
| 210 | deltacmd_.c:deltacmd.h \ |
| 211 | descendents_.c:descendents.h \ |
| 212 | diff_.c:diff.h \ |
| 213 | diffcmd_.c:diffcmd.h \ |
| 214 | encode_.c:encode.h \ |
| 215 | file_.c:file.h \ |
| 216 | http_.c:http.h \ |
| 217 | info_.c:info.h \ |
| 218 | login_.c:login.h \ |
| 219 | main_.c:main.h \ |
| 220 | manifest_.c:manifest.h \ |
| 221 | md5_.c:md5.h \ |
| 222 | merge_.c:merge.h \ |
| 223 | merge3_.c:merge3.h \ |
| 224 | name_.c:name.h \ |
| 225 | pivot_.c:pivot.h \ |
| 226 | printf_.c:printf.h \ |
| 227 | rebuild_.c:rebuild.h \ |
| 228 | schema_.c:schema.h \ |
| 229 | setup_.c:setup.h \ |
| 230 | sha1_.c:sha1.h \ |
| 231 | style_.c:style.h \ |
| 232 | sync_.c:sync.h \ |
| 233 | timeline_.c:timeline.h \ |
| 234 | update_.c:update.h \ |
| 235 | url_.c:url.h \ |
| 236 | user_.c:user.h \ |
| 237 | verify_.c:verify.h \ |
| 238 | vfile_.c:vfile.h \ |
| 239 | wiki_.c:wiki.h \ |
| 240 | wikiformat_.c:wikiformat.h \ |
| 241 | xfer_.c:xfer.h \ |
| 242 | zip_.c:zip.h |
| 243 | |
| 244 | APPNAME = fossil$(E) |
| 245 | |
| 246 | |
| 247 | |
| 248 | all: $(APPNAME) |
| @@ -178,14 +272,14 @@ | |
| 272 | $(TCC) -o $(APPNAME) $(OBJ) sqlite3.o $(LIB) |
| 273 | |
| 274 | clean: |
| 275 | rm -f *.o *_.c $(APPNAME) VERSION.h |
| 276 | rm -f translate makeheaders mkindex page_index.h headers |
| 277 | rm -f $(HDR) |
| 278 | |
| 279 | headers: makeheaders mkindex $(TRANS_SRC) ./VERSION.h |
| 280 | ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h |
| 281 | ./mkindex $(TRANS_SRC) >page_index.h |
| 282 | touch headers |
| 283 | |
| 284 | add_.c: $(SRCDIR)/add.c $(SRCDIR)/VERSION translate |
| 285 | ./translate $(SRCDIR)/add.c | sed -f $(SRCDIR)/VERSION >add_.c |
| @@ -192,451 +286,451 @@ | |
| 286 | |
| 287 | add.o: add_.c add.h $(SRCDIR)/config.h |
| 288 | $(XTCC) -o add.o -c add_.c |
| 289 | |
| 290 | add.h: makeheaders |
| 291 | ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h |
| 292 | touch headers |
| 293 | |
| 294 | blob_.c: $(SRCDIR)/blob.c $(SRCDIR)/VERSION translate |
| 295 | ./translate $(SRCDIR)/blob.c | sed -f $(SRCDIR)/VERSION >blob_.c |
| 296 | |
| 297 | blob.o: blob_.c blob.h $(SRCDIR)/config.h |
| 298 | $(XTCC) -o blob.o -c blob_.c |
| 299 | |
| 300 | blob.h: makeheaders |
| 301 | ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h |
| 302 | touch headers |
| 303 | |
| 304 | cgi_.c: $(SRCDIR)/cgi.c $(SRCDIR)/VERSION translate |
| 305 | ./translate $(SRCDIR)/cgi.c | sed -f $(SRCDIR)/VERSION >cgi_.c |
| 306 | |
| 307 | cgi.o: cgi_.c cgi.h $(SRCDIR)/config.h |
| 308 | $(XTCC) -o cgi.o -c cgi_.c |
| 309 | |
| 310 | cgi.h: makeheaders |
| 311 | ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h |
| 312 | touch headers |
| 313 | |
| 314 | checkin_.c: $(SRCDIR)/checkin.c $(SRCDIR)/VERSION translate |
| 315 | ./translate $(SRCDIR)/checkin.c | sed -f $(SRCDIR)/VERSION >checkin_.c |
| 316 | |
| 317 | checkin.o: checkin_.c checkin.h $(SRCDIR)/config.h |
| 318 | $(XTCC) -o checkin.o -c checkin_.c |
| 319 | |
| 320 | checkin.h: makeheaders |
| 321 | ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h |
| 322 | touch headers |
| 323 | |
| 324 | checkout_.c: $(SRCDIR)/checkout.c $(SRCDIR)/VERSION translate |
| 325 | ./translate $(SRCDIR)/checkout.c | sed -f $(SRCDIR)/VERSION >checkout_.c |
| 326 | |
| 327 | checkout.o: checkout_.c checkout.h $(SRCDIR)/config.h |
| 328 | $(XTCC) -o checkout.o -c checkout_.c |
| 329 | |
| 330 | checkout.h: makeheaders |
| 331 | ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h |
| 332 | touch headers |
| 333 | |
| 334 | clearsign_.c: $(SRCDIR)/clearsign.c $(SRCDIR)/VERSION translate |
| 335 | ./translate $(SRCDIR)/clearsign.c | sed -f $(SRCDIR)/VERSION >clearsign_.c |
| 336 | |
| 337 | clearsign.o: clearsign_.c clearsign.h $(SRCDIR)/config.h |
| 338 | $(XTCC) -o clearsign.o -c clearsign_.c |
| 339 | |
| 340 | clearsign.h: makeheaders |
| 341 | ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h |
| 342 | touch headers |
| 343 | |
| 344 | clone_.c: $(SRCDIR)/clone.c $(SRCDIR)/VERSION translate |
| 345 | ./translate $(SRCDIR)/clone.c | sed -f $(SRCDIR)/VERSION >clone_.c |
| 346 | |
| 347 | clone.o: clone_.c clone.h $(SRCDIR)/config.h |
| 348 | $(XTCC) -o clone.o -c clone_.c |
| 349 | |
| 350 | clone.h: makeheaders |
| 351 | ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h |
| 352 | touch headers |
| 353 | |
| 354 | comformat_.c: $(SRCDIR)/comformat.c $(SRCDIR)/VERSION translate |
| 355 | ./translate $(SRCDIR)/comformat.c | sed -f $(SRCDIR)/VERSION >comformat_.c |
| 356 | |
| 357 | comformat.o: comformat_.c comformat.h $(SRCDIR)/config.h |
| 358 | $(XTCC) -o comformat.o -c comformat_.c |
| 359 | |
| 360 | comformat.h: makeheaders |
| 361 | ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h |
| 362 | touch headers |
| 363 | |
| 364 | construct_.c: $(SRCDIR)/construct.c $(SRCDIR)/VERSION translate |
| 365 | ./translate $(SRCDIR)/construct.c | sed -f $(SRCDIR)/VERSION >construct_.c |
| 366 | |
| 367 | construct.o: construct_.c construct.h $(SRCDIR)/config.h |
| 368 | $(XTCC) -o construct.o -c construct_.c |
| 369 | |
| 370 | construct.h: makeheaders |
| 371 | ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h |
| 372 | touch headers |
| 373 | |
| 374 | content_.c: $(SRCDIR)/content.c $(SRCDIR)/VERSION translate |
| 375 | ./translate $(SRCDIR)/content.c | sed -f $(SRCDIR)/VERSION >content_.c |
| 376 | |
| 377 | content.o: content_.c content.h $(SRCDIR)/config.h |
| 378 | $(XTCC) -o content.o -c content_.c |
| 379 | |
| 380 | content.h: makeheaders |
| 381 | ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h |
| 382 | touch headers |
| 383 | |
| 384 | db_.c: $(SRCDIR)/db.c $(SRCDIR)/VERSION translate |
| 385 | ./translate $(SRCDIR)/db.c | sed -f $(SRCDIR)/VERSION >db_.c |
| 386 | |
| 387 | db.o: db_.c db.h $(SRCDIR)/config.h |
| 388 | $(XTCC) -o db.o -c db_.c |
| 389 | |
| 390 | db.h: makeheaders |
| 391 | ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h |
| 392 | touch headers |
| 393 | |
| 394 | delta_.c: $(SRCDIR)/delta.c $(SRCDIR)/VERSION translate |
| 395 | ./translate $(SRCDIR)/delta.c | sed -f $(SRCDIR)/VERSION >delta_.c |
| 396 | |
| 397 | delta.o: delta_.c delta.h $(SRCDIR)/config.h |
| 398 | $(XTCC) -o delta.o -c delta_.c |
| 399 | |
| 400 | delta.h: makeheaders |
| 401 | ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h |
| 402 | touch headers |
| 403 | |
| 404 | deltacmd_.c: $(SRCDIR)/deltacmd.c $(SRCDIR)/VERSION translate |
| 405 | ./translate $(SRCDIR)/deltacmd.c | sed -f $(SRCDIR)/VERSION >deltacmd_.c |
| 406 | |
| 407 | deltacmd.o: deltacmd_.c deltacmd.h $(SRCDIR)/config.h |
| 408 | $(XTCC) -o deltacmd.o -c deltacmd_.c |
| 409 | |
| 410 | deltacmd.h: makeheaders |
| 411 | ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h |
| 412 | touch headers |
| 413 | |
| 414 | descendents_.c: $(SRCDIR)/descendents.c $(SRCDIR)/VERSION translate |
| 415 | ./translate $(SRCDIR)/descendents.c | sed -f $(SRCDIR)/VERSION >descendents_.c |
| 416 | |
| 417 | descendents.o: descendents_.c descendents.h $(SRCDIR)/config.h |
| 418 | $(XTCC) -o descendents.o -c descendents_.c |
| 419 | |
| 420 | descendents.h: makeheaders |
| 421 | ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h |
| 422 | touch headers |
| 423 | |
| 424 | diff_.c: $(SRCDIR)/diff.c $(SRCDIR)/VERSION translate |
| 425 | ./translate $(SRCDIR)/diff.c | sed -f $(SRCDIR)/VERSION >diff_.c |
| 426 | |
| 427 | diff.o: diff_.c diff.h $(SRCDIR)/config.h |
| 428 | $(XTCC) -o diff.o -c diff_.c |
| 429 | |
| 430 | diff.h: makeheaders |
| 431 | ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h |
| 432 | touch headers |
| 433 | |
| 434 | diffcmd_.c: $(SRCDIR)/diffcmd.c $(SRCDIR)/VERSION translate |
| 435 | ./translate $(SRCDIR)/diffcmd.c | sed -f $(SRCDIR)/VERSION >diffcmd_.c |
| 436 | |
| 437 | diffcmd.o: diffcmd_.c diffcmd.h $(SRCDIR)/config.h |
| 438 | $(XTCC) -o diffcmd.o -c diffcmd_.c |
| 439 | |
| 440 | diffcmd.h: makeheaders |
| 441 | ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h |
| 442 | touch headers |
| 443 | |
| 444 | encode_.c: $(SRCDIR)/encode.c $(SRCDIR)/VERSION translate |
| 445 | ./translate $(SRCDIR)/encode.c | sed -f $(SRCDIR)/VERSION >encode_.c |
| 446 | |
| 447 | encode.o: encode_.c encode.h $(SRCDIR)/config.h |
| 448 | $(XTCC) -o encode.o -c encode_.c |
| 449 | |
| 450 | encode.h: makeheaders |
| 451 | ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h |
| 452 | touch headers |
| 453 | |
| 454 | file_.c: $(SRCDIR)/file.c $(SRCDIR)/VERSION translate |
| 455 | ./translate $(SRCDIR)/file.c | sed -f $(SRCDIR)/VERSION >file_.c |
| 456 | |
| 457 | file.o: file_.c file.h $(SRCDIR)/config.h |
| 458 | $(XTCC) -o file.o -c file_.c |
| 459 | |
| 460 | file.h: makeheaders |
| 461 | ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h |
| 462 | touch headers |
| 463 | |
| 464 | http_.c: $(SRCDIR)/http.c $(SRCDIR)/VERSION translate |
| 465 | ./translate $(SRCDIR)/http.c | sed -f $(SRCDIR)/VERSION >http_.c |
| 466 | |
| 467 | http.o: http_.c http.h $(SRCDIR)/config.h |
| 468 | $(XTCC) -o http.o -c http_.c |
| 469 | |
| 470 | http.h: makeheaders |
| 471 | ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h |
| 472 | touch headers |
| 473 | |
| 474 | info_.c: $(SRCDIR)/info.c $(SRCDIR)/VERSION translate |
| 475 | ./translate $(SRCDIR)/info.c | sed -f $(SRCDIR)/VERSION >info_.c |
| 476 | |
| 477 | info.o: info_.c info.h $(SRCDIR)/config.h |
| 478 | $(XTCC) -o info.o -c info_.c |
| 479 | |
| 480 | info.h: makeheaders |
| 481 | ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h |
| 482 | touch headers |
| 483 | |
| 484 | login_.c: $(SRCDIR)/login.c $(SRCDIR)/VERSION translate |
| 485 | ./translate $(SRCDIR)/login.c | sed -f $(SRCDIR)/VERSION >login_.c |
| 486 | |
| 487 | login.o: login_.c login.h $(SRCDIR)/config.h |
| 488 | $(XTCC) -o login.o -c login_.c |
| 489 | |
| 490 | login.h: makeheaders |
| 491 | ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h |
| 492 | touch headers |
| 493 | |
| 494 | main_.c: $(SRCDIR)/main.c $(SRCDIR)/VERSION translate |
| 495 | ./translate $(SRCDIR)/main.c | sed -f $(SRCDIR)/VERSION >main_.c |
| 496 | |
| 497 | main.o: main_.c main.h page_index.h $(SRCDIR)/config.h |
| 498 | $(XTCC) -o main.o -c main_.c |
| 499 | |
| 500 | main.h: makeheaders |
| 501 | ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h |
| 502 | touch headers |
| 503 | |
| 504 | manifest_.c: $(SRCDIR)/manifest.c $(SRCDIR)/VERSION translate |
| 505 | ./translate $(SRCDIR)/manifest.c | sed -f $(SRCDIR)/VERSION >manifest_.c |
| 506 | |
| 507 | manifest.o: manifest_.c manifest.h $(SRCDIR)/config.h |
| 508 | $(XTCC) -o manifest.o -c manifest_.c |
| 509 | |
| 510 | manifest.h: makeheaders |
| 511 | ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h |
| 512 | touch headers |
| 513 | |
| 514 | md5_.c: $(SRCDIR)/md5.c $(SRCDIR)/VERSION translate |
| 515 | ./translate $(SRCDIR)/md5.c | sed -f $(SRCDIR)/VERSION >md5_.c |
| 516 | |
| 517 | md5.o: md5_.c md5.h $(SRCDIR)/config.h |
| 518 | $(XTCC) -o md5.o -c md5_.c |
| 519 | |
| 520 | md5.h: makeheaders |
| 521 | ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h |
| 522 | touch headers |
| 523 | |
| 524 | merge_.c: $(SRCDIR)/merge.c $(SRCDIR)/VERSION translate |
| 525 | ./translate $(SRCDIR)/merge.c | sed -f $(SRCDIR)/VERSION >merge_.c |
| 526 | |
| 527 | merge.o: merge_.c merge.h $(SRCDIR)/config.h |
| 528 | $(XTCC) -o merge.o -c merge_.c |
| 529 | |
| 530 | merge.h: makeheaders |
| 531 | ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h |
| 532 | touch headers |
| 533 | |
| 534 | merge3_.c: $(SRCDIR)/merge3.c $(SRCDIR)/VERSION translate |
| 535 | ./translate $(SRCDIR)/merge3.c | sed -f $(SRCDIR)/VERSION >merge3_.c |
| 536 | |
| 537 | merge3.o: merge3_.c merge3.h $(SRCDIR)/config.h |
| 538 | $(XTCC) -o merge3.o -c merge3_.c |
| 539 | |
| 540 | merge3.h: makeheaders |
| 541 | ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h |
| 542 | touch headers |
| 543 | |
| 544 | name_.c: $(SRCDIR)/name.c $(SRCDIR)/VERSION translate |
| 545 | ./translate $(SRCDIR)/name.c | sed -f $(SRCDIR)/VERSION >name_.c |
| 546 | |
| 547 | name.o: name_.c name.h $(SRCDIR)/config.h |
| 548 | $(XTCC) -o name.o -c name_.c |
| 549 | |
| 550 | name.h: makeheaders |
| 551 | ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h |
| 552 | touch headers |
| 553 | |
| 554 | pivot_.c: $(SRCDIR)/pivot.c $(SRCDIR)/VERSION translate |
| 555 | ./translate $(SRCDIR)/pivot.c | sed -f $(SRCDIR)/VERSION >pivot_.c |
| 556 | |
| 557 | pivot.o: pivot_.c pivot.h $(SRCDIR)/config.h |
| 558 | $(XTCC) -o pivot.o -c pivot_.c |
| 559 | |
| 560 | pivot.h: makeheaders |
| 561 | ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h |
| 562 | touch headers |
| 563 | |
| 564 | printf_.c: $(SRCDIR)/printf.c $(SRCDIR)/VERSION translate |
| 565 | ./translate $(SRCDIR)/printf.c | sed -f $(SRCDIR)/VERSION >printf_.c |
| 566 | |
| 567 | printf.o: printf_.c printf.h $(SRCDIR)/config.h |
| 568 | $(XTCC) -o printf.o -c printf_.c |
| 569 | |
| 570 | printf.h: makeheaders |
| 571 | ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h |
| 572 | touch headers |
| 573 | |
| 574 | rebuild_.c: $(SRCDIR)/rebuild.c $(SRCDIR)/VERSION translate |
| 575 | ./translate $(SRCDIR)/rebuild.c | sed -f $(SRCDIR)/VERSION >rebuild_.c |
| 576 | |
| 577 | rebuild.o: rebuild_.c rebuild.h $(SRCDIR)/config.h |
| 578 | $(XTCC) -o rebuild.o -c rebuild_.c |
| 579 | |
| 580 | rebuild.h: makeheaders |
| 581 | ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h |
| 582 | touch headers |
| 583 | |
| 584 | schema_.c: $(SRCDIR)/schema.c $(SRCDIR)/VERSION translate |
| 585 | ./translate $(SRCDIR)/schema.c | sed -f $(SRCDIR)/VERSION >schema_.c |
| 586 | |
| 587 | schema.o: schema_.c schema.h $(SRCDIR)/config.h |
| 588 | $(XTCC) -o schema.o -c schema_.c |
| 589 | |
| 590 | schema.h: makeheaders |
| 591 | ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h |
| 592 | touch headers |
| 593 | |
| 594 | setup_.c: $(SRCDIR)/setup.c $(SRCDIR)/VERSION translate |
| 595 | ./translate $(SRCDIR)/setup.c | sed -f $(SRCDIR)/VERSION >setup_.c |
| 596 | |
| 597 | setup.o: setup_.c setup.h $(SRCDIR)/config.h |
| 598 | $(XTCC) -o setup.o -c setup_.c |
| 599 | |
| 600 | setup.h: makeheaders |
| 601 | ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h |
| 602 | touch headers |
| 603 | |
| 604 | sha1_.c: $(SRCDIR)/sha1.c $(SRCDIR)/VERSION translate |
| 605 | ./translate $(SRCDIR)/sha1.c | sed -f $(SRCDIR)/VERSION >sha1_.c |
| 606 | |
| 607 | sha1.o: sha1_.c sha1.h $(SRCDIR)/config.h |
| 608 | $(XTCC) -o sha1.o -c sha1_.c |
| 609 | |
| 610 | sha1.h: makeheaders |
| 611 | ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h |
| 612 | touch headers |
| 613 | |
| 614 | style_.c: $(SRCDIR)/style.c $(SRCDIR)/VERSION translate |
| 615 | ./translate $(SRCDIR)/style.c | sed -f $(SRCDIR)/VERSION >style_.c |
| 616 | |
| 617 | style.o: style_.c style.h $(SRCDIR)/config.h |
| 618 | $(XTCC) -o style.o -c style_.c |
| 619 | |
| 620 | style.h: makeheaders |
| 621 | ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h |
| 622 | touch headers |
| 623 | |
| 624 | sync_.c: $(SRCDIR)/sync.c $(SRCDIR)/VERSION translate |
| 625 | ./translate $(SRCDIR)/sync.c | sed -f $(SRCDIR)/VERSION >sync_.c |
| 626 | |
| 627 | sync.o: sync_.c sync.h $(SRCDIR)/config.h |
| 628 | $(XTCC) -o sync.o -c sync_.c |
| 629 | |
| 630 | sync.h: makeheaders |
| 631 | ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h |
| 632 | touch headers |
| 633 | |
| 634 | timeline_.c: $(SRCDIR)/timeline.c $(SRCDIR)/VERSION translate |
| 635 | ./translate $(SRCDIR)/timeline.c | sed -f $(SRCDIR)/VERSION >timeline_.c |
| 636 | |
| 637 | timeline.o: timeline_.c timeline.h $(SRCDIR)/config.h |
| 638 | $(XTCC) -o timeline.o -c timeline_.c |
| 639 | |
| 640 | timeline.h: makeheaders |
| 641 | ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h |
| 642 | touch headers |
| 643 | |
| 644 | update_.c: $(SRCDIR)/update.c $(SRCDIR)/VERSION translate |
| 645 | ./translate $(SRCDIR)/update.c | sed -f $(SRCDIR)/VERSION >update_.c |
| 646 | |
| 647 | update.o: update_.c update.h $(SRCDIR)/config.h |
| 648 | $(XTCC) -o update.o -c update_.c |
| 649 | |
| 650 | update.h: makeheaders |
| 651 | ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h |
| 652 | touch headers |
| 653 | |
| 654 | url_.c: $(SRCDIR)/url.c $(SRCDIR)/VERSION translate |
| 655 | ./translate $(SRCDIR)/url.c | sed -f $(SRCDIR)/VERSION >url_.c |
| 656 | |
| 657 | url.o: url_.c url.h $(SRCDIR)/config.h |
| 658 | $(XTCC) -o url.o -c url_.c |
| 659 | |
| 660 | url.h: makeheaders |
| 661 | ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h |
| 662 | touch headers |
| 663 | |
| 664 | user_.c: $(SRCDIR)/user.c $(SRCDIR)/VERSION translate |
| 665 | ./translate $(SRCDIR)/user.c | sed -f $(SRCDIR)/VERSION >user_.c |
| 666 | |
| 667 | user.o: user_.c user.h $(SRCDIR)/config.h |
| 668 | $(XTCC) -o user.o -c user_.c |
| 669 | |
| 670 | user.h: makeheaders |
| 671 | ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h |
| 672 | touch headers |
| 673 | |
| 674 | verify_.c: $(SRCDIR)/verify.c $(SRCDIR)/VERSION translate |
| 675 | ./translate $(SRCDIR)/verify.c | sed -f $(SRCDIR)/VERSION >verify_.c |
| 676 | |
| 677 | verify.o: verify_.c verify.h $(SRCDIR)/config.h |
| 678 | $(XTCC) -o verify.o -c verify_.c |
| 679 | |
| 680 | verify.h: makeheaders |
| 681 | ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h |
| 682 | touch headers |
| 683 | |
| 684 | vfile_.c: $(SRCDIR)/vfile.c $(SRCDIR)/VERSION translate |
| 685 | ./translate $(SRCDIR)/vfile.c | sed -f $(SRCDIR)/VERSION >vfile_.c |
| 686 | |
| 687 | vfile.o: vfile_.c vfile.h $(SRCDIR)/config.h |
| 688 | $(XTCC) -o vfile.o -c vfile_.c |
| 689 | |
| 690 | vfile.h: makeheaders |
| 691 | ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h |
| 692 | touch headers |
| 693 | |
| 694 | wiki_.c: $(SRCDIR)/wiki.c $(SRCDIR)/VERSION translate |
| 695 | ./translate $(SRCDIR)/wiki.c | sed -f $(SRCDIR)/VERSION >wiki_.c |
| 696 | |
| 697 | wiki.o: wiki_.c wiki.h $(SRCDIR)/config.h |
| 698 | $(XTCC) -o wiki.o -c wiki_.c |
| 699 | |
| 700 | wiki.h: makeheaders |
| 701 | ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h |
| 702 | touch headers |
| 703 | |
| 704 | wikiformat_.c: $(SRCDIR)/wikiformat.c $(SRCDIR)/VERSION translate |
| 705 | ./translate $(SRCDIR)/wikiformat.c | sed -f $(SRCDIR)/VERSION >wikiformat_.c |
| 706 | |
| 707 | wikiformat.o: wikiformat_.c wikiformat.h $(SRCDIR)/config.h |
| 708 | $(XTCC) -o wikiformat.o -c wikiformat_.c |
| 709 | |
| 710 | wikiformat.h: makeheaders |
| 711 | ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h |
| 712 | touch headers |
| 713 | |
| 714 | xfer_.c: $(SRCDIR)/xfer.c $(SRCDIR)/VERSION translate |
| 715 | ./translate $(SRCDIR)/xfer.c | sed -f $(SRCDIR)/VERSION >xfer_.c |
| 716 | |
| 717 | xfer.o: xfer_.c xfer.h $(SRCDIR)/config.h |
| 718 | $(XTCC) -o xfer.o -c xfer_.c |
| 719 | |
| 720 | xfer.h: makeheaders |
| 721 | ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h |
| 722 | touch headers |
| 723 | |
| 724 | zip_.c: $(SRCDIR)/zip.c $(SRCDIR)/VERSION translate |
| 725 | ./translate $(SRCDIR)/zip.c | sed -f $(SRCDIR)/VERSION >zip_.c |
| 726 | |
| 727 | zip.o: zip_.c zip.h $(SRCDIR)/config.h |
| 728 | $(XTCC) -o zip.o -c zip_.c |
| 729 | |
| 730 | zip.h: makeheaders |
| 731 | ./makeheaders $(MHDR) $(SRCDIR)/sqlite3.h ./VERSION.h |
| 732 | touch headers |
| 733 | |
| 734 | sqlite3.o: $(SRCDIR)/sqlite3.c |
| 735 | $(XTCC) -DSQLITE_OMIT_LOAD_EXTENSION=1 -DSQLITE_PRIVATE= -DTHREADSAFE=0 -DSQLITE_DEFAULT_FILE_FORMAT=4 -c $(SRCDIR)/sqlite3.c -o sqlite3.o |
| 736 | |
| 737 |