Overview
Comment: | Dashboard compiles |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.65-try3 |
Files: | files | file ages | folders |
SHA1: |
dfa5ecc8d17d379e8e2961297d116b7d |
User & Date: | matt on 2019-11-16 03:17:48 |
Other Links: | branch diff | manifest | tags |
Context
2019-11-16
| ||
03:25 | Tidy up, remove some not needed references to configfmod check-in: 03fc95cacb user: matt tags: v1.65-try3 | |
03:17 | Dashboard compiles check-in: dfa5ecc8d1 user: matt tags: v1.65-try3 | |
2019-11-12
| ||
23:57 | Added import of megamod for eval in configf check-in: 2415804df9 user: matt tags: v1.65-try3 | |
Changes
Modified Makefile from [8a87ee849e] to [e03fe5c6f8].
︙ | ︙ | |||
89 90 91 92 93 94 95 | mtest: readline-fix.scm megatest.o $(MOFILES) $(MOIMPFILES) csc $(CSCOPTS) $(MOFILES) $(MOIMPFILES) megatest.o -o mtest showmtesthash: @echo $(MTESTHASH) # removing $(GOFILES) | | | | 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 | mtest: readline-fix.scm megatest.o $(MOFILES) $(MOIMPFILES) csc $(CSCOPTS) $(MOFILES) $(MOIMPFILES) megatest.o -o mtest showmtesthash: @echo $(MTESTHASH) # removing $(GOFILES) dboard : dashboard.scm $(MOFILES) $(MOIMPFILES) csc $(CSCOPTS) dashboard.scm $(MOFILES) $(MOIMPFILES) -o dboard ndboard : newdashboard.scm $(GOFILES) csc $(CSCOPTS) $(GOFILES) newdashboard.scm -o ndboard mtut: $(MOFILES) megatest-fossil-hash.scm mtut.scm csc $(CSCOPTS) $(MOFILES) mtut.scm -o mtut |
︙ | ︙ |
Modified dashboard.scm from [812de5ea93] to [e8f6f8a2a7].
︙ | ︙ | |||
63 64 65 66 67 68 69 70 71 72 73 74 75 76 | (include "common_records.scm") (include "db_records.scm") (include "run_records.scm") (include "task_records.scm") (include "megatest-fossil-hash.scm") (include "vg_records.scm") (define help (conc "Megatest Dashboard, documentation at http://www.kiatoa.com/fossils/megatest version " megatest-version " license GPL, Copyright (C) Matt Welland 2012-2017 Usage: dashboard [options] | > > | 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 | (include "common_records.scm") (include "db_records.scm") (include "run_records.scm") (include "task_records.scm") (include "megatest-fossil-hash.scm") (include "vg_records.scm") (configf:add-eval-string "(import megamod)") (define help (conc "Megatest Dashboard, documentation at http://www.kiatoa.com/fossils/megatest version " megatest-version " license GPL, Copyright (C) Matt Welland 2012-2017 Usage: dashboard [options] |
︙ | ︙ |