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