Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Recompute where the tclsh is after every make_tcl |
|---|---|
| Timelines: | family | ancestors | descendants | both | autosetup |
| Files: | files | file ages | folders |
| SHA1: |
0bde6831fb727cb2a9d440ca6ca49ee5 |
| User & Date: | hypnotoad 2015-03-13 12:39:35 |
Context
|
2015-03-13
| ||
| 12:43 | Add a config option for fossil check-in: 4cbb8206e8 user: hypnotoad tags: autosetup | |
| 12:39 | Recompute where the tclsh is after every make_tcl check-in: 0bde6831fb user: hypnotoad tags: autosetup | |
| 12:19 | Adding fossil branches to build specs Added a "domake" to hijack make calls check-in: 556b736457 user: hypnotoad tags: autosetup | |
Changes
Changes to Makefile.
1 2 3 4 5 6 7 8 9 | # Makefile.in -- # include odieConfig.sh all: install core: install reconfig: rm -f autosetup/jimsh0.exe autosetup/jimsh0 | | | > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
# Makefile.in --
#
include odieConfig.sh
all: install
core: install
reconfig:
rm -f autosetup/jimsh0.exe autosetup/jimsh0
ODIE_BUILD_TCLSH=`autosetup/find-tclsh`
${ODIE_BUILD_TCLSH} autosetup/autosetup $(ODIE_RECONFIG_OPTS)
cp -a ${ODIE_SRC_DIR}/odieConfig.tcl ${LOCAL_REPO}/lib/odieConfig.tcl
cp -a ${ODIE_SRC_DIR}/odieConfig.sh ${LOCAL_REPO}/lib/odieConfig.sh
install:
$(SHELL) scripts/make_skel.sh
$(SHELL) scripts/make_tcl.sh
ODIE_BUILD_TCLSH=`autosetup/find-tclsh`
${ODIE_BUILD_TCLSH} scripts/sherpa.tcl install all
${ODIE_BUILD_TCLSH} scripts/make_basekit.tcl
$(ODIE_BUILD_TCLSH) scripts/make_sherpa.tcl
packages:
${ODIE_BUILD_TCLSH} scripts/sherpa.tcl install all
upgrade:
fossil update
${ODIE_BUILD_TCLSH} scripts/upgrade.tcl
${ODIE_BUILD_TCLSH} scripts/sherpa.tcl install all
${ODIE_BUILD_TCLSH} scripts/make_basekit.tcl
$(ODIE_BUILD_TCLSH) scripts/make_sherpa.tcl
upgrade-tcl:
fossil update
$(SHELL) scripts/make_tcl.sh
ODIE_BUILD_TCLSH=`autosetup/find-tclsh`
${ODIE_BUILD_TCLSH} scripts/upgrade.tcl
${ODIE_BUILD_TCLSH} scripts/sherpa.tcl install all
${ODIE_BUILD_TCLSH} scripts/make_basekit.tcl
$(ODIE_BUILD_TCLSH) scripts/make_sherpa.tcl
tcl:
$(SHELL) scripts/make_tcl.sh
|
| ︙ | ︙ |