Overview
Comment: | Removed most references to SRCFILES. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.65-try3 |
Files: | files | file ages | folders |
SHA1: |
7f499ea08bb1f3f491aac185a980444d |
User & Date: | matt on 2019-11-04 05:05:11 |
Other Links: | branch diff | manifest | tags |
Context
2019-11-04
| ||
05:09 | removed couple more references to OFILES. check-in: 159145e9c3 user: matt tags: v1.65-try3 | |
05:05 | Removed most references to SRCFILES. check-in: 7f499ea08b user: matt tags: v1.65-try3 | |
04:59 | config-lookup -> configf:lookup everywhere now. check-in: b056a2ef64 user: matt tags: v1.65-try3 | |
Changes
Modified Makefile from [8f26a1afe2] to [e2d8a26f3b].
︙ | ︙ | |||
17 18 19 20 21 22 23 | # make install CSCOPTS='-accumulate-profile -profile-name $(PWD)/profile-ww$(shell date +%V.%u)' # rm <files>.o ; make install CSCOPTS='-profile' ; ... ; chicken-profile | less SHELL=/bin/bash PREFIX=$(PWD) CSCOPTS= INSTALL=install | | | | | | | | | | > | 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | # make install CSCOPTS='-accumulate-profile -profile-name $(PWD)/profile-ww$(shell date +%V.%u)' # rm <files>.o ; make install CSCOPTS='-profile' ; ... ; chicken-profile | less SHELL=/bin/bash PREFIX=$(PWD) CSCOPTS= INSTALL=install #SRCFILES = common.scm items.scm launch.scm \ # ods.scm runconfig.scm server.scm configf.scm \ # db.scm keys.scm margs.scm megatest-version.scm \ # process.scm runs.scm tasks.scm tests.scm genexample.scm \ # http-transport.scm filedb.scm tdb.scm \ # client.scm mt.scm \ # ezsteps.scm lock-queue.scm sdb.scm \ # rmt.scm api.scm subrun.scm \ # portlogger.scm archive.scm env.scm diff-report.scm cgisetup/models/pgdb.scm SRCFILES= # module source files MSRCFILES = ftail.scm rmtmod.scm commonmod.scm apimod.scm archivemod.scm clientmod.scm configfmod.scm dbmod.scm dcommonmod.scm envmod.scm ezstepsmod.scm itemsmod.scm keysmod.scm launchmod.scm odsmod.scm processmod.scm runconfigmod.scm runsmod.scm servermod.scm subrunmod.scm tasksmod.scm testsmod.scm vgmod.scm megamod.scm # Eggs to install (straightforward ones) EGGS=matchable readline apropos base64 regex-literals format regex-case test coops trace csv \ |
︙ | ︙ | |||
89 90 91 92 93 94 95 | ndboard : newdashboard.scm $(OFILES) $(GOFILES) csc $(CSCOPTS) $(OFILES) $(GOFILES) newdashboard.scm -o ndboard mtut: $(OFILES) $(MOFILES) megatest-fossil-hash.scm mtut.scm csc $(CSCOPTS) $(OFILES) $(MOFILES) mtut.scm -o mtut | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 | ndboard : newdashboard.scm $(OFILES) $(GOFILES) csc $(CSCOPTS) $(OFILES) $(GOFILES) newdashboard.scm -o ndboard mtut: $(OFILES) $(MOFILES) megatest-fossil-hash.scm mtut.scm csc $(CSCOPTS) $(OFILES) $(MOFILES) mtut.scm -o mtut #TCMTOBJS = \ # api.o \ # archive.o \ # cgisetup/models/pgdb.o \ # client.o \ # common.o \ # configf.o \ # db.o \ # env.o \ # http-transport.o \ # items.o \ # keys.o \ # launch.o \ # lock-queue.o \ # margs.o \ # mt.o \ # megatest-version.o \ # ods.o \ # portlogger.o \ # process.o \ # rmt.o \ # $(MOFILES) \ # rpc-transport.o \ # runconfig.o \ # runs.o \ # server.o \ # tasks.o \ # tdb.o \ # tests.o \ # subrun.o \ TCMTOBJS=$(MOFILES) tcmt : $(TCMTOBJS) tcmt.scm csc $(CSCOPTS) $(TCMTOBJS) tcmt.scm -o tcmt # install documentation to $(PREFIX)/docs # DOES NOT REBUILD DOCS # |
︙ | ︙ |