build: make seed: Update mescc-tools-seed too.
This commit is contained in:
parent
4d90fb1475
commit
d8e6046453
12
GNUmakefile
12
GNUmakefile
|
@ -48,6 +48,14 @@ seed: all-go
|
||||||
MES=$(GUILE) GUILE=$(GUILE) SEED=1 build-aux/build-mes.sh
|
MES=$(GUILE) GUILE=$(GUILE) SEED=1 build-aux/build-mes.sh
|
||||||
cd $(MES_SEED) && MES_PREFIX=$(PWD) ./refresh.sh
|
cd $(MES_SEED) && MES_PREFIX=$(PWD) ./refresh.sh
|
||||||
MES=$(GUILE) GUILE=$(GUILE) SEED=1 build-aux/build-mes.sh
|
MES=$(GUILE) GUILE=$(GUILE) SEED=1 build-aux/build-mes.sh
|
||||||
|
cp lib/x86-mes/elf32-header.hex2\
|
||||||
|
lib/x86-mes/x86.M1\
|
||||||
|
lib/x86-mes/libc+tcc.S\
|
||||||
|
lib/x86-mes/libc.S\
|
||||||
|
lib/x86-mes/crt1.S\
|
||||||
|
lib/x86-mes/libgetopt.S\
|
||||||
|
$(MESCC_TOOLS_SEED)/libs
|
||||||
|
cd $(MESCC_TOOLS_SEED) && MES_PREFIX=$(PWD) ./bootstrap.sh
|
||||||
|
|
||||||
define HELP_TOP
|
define HELP_TOP
|
||||||
Usage: make [OPTION]... [TARGET]...
|
Usage: make [OPTION]... [TARGET]...
|
||||||
|
@ -136,6 +144,10 @@ ifdef MES_SEED
|
||||||
export MES_SEED
|
export MES_SEED
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifdef MESCC_TOOLS_SEED
|
||||||
|
export MESCC_TOOLS_SEED
|
||||||
|
endif
|
||||||
|
|
||||||
ifdef TINYCC_SEED
|
ifdef TINYCC_SEED
|
||||||
export TINYCC_SEED
|
export TINYCC_SEED
|
||||||
endif
|
endif
|
||||||
|
|
3
configure
vendored
3
configure
vendored
|
@ -223,6 +223,7 @@ Some influential environment variables:
|
||||||
GUILE guile command
|
GUILE guile command
|
||||||
GUILE_TOOLS guile-tools command
|
GUILE_TOOLS guile-tools command
|
||||||
MES_SEED location of mes-seed
|
MES_SEED location of mes-seed
|
||||||
|
MESCC_TOOLS_SEED location of mescc-tools-seed
|
||||||
TINYCC_SEED location of tinycc-seed
|
TINYCC_SEED location of tinycc-seed
|
||||||
" PACKAGE VERSION (getenv "PREFIX")))
|
" PACKAGE VERSION (getenv "PREFIX")))
|
||||||
|
|
||||||
|
@ -254,6 +255,7 @@ Some influential environment variables:
|
||||||
(M1FLAGS (getenv "M1FLAGS"))
|
(M1FLAGS (getenv "M1FLAGS"))
|
||||||
(MESCCFLAGS (getenv "MESCCFLAGS"))
|
(MESCCFLAGS (getenv "MESCCFLAGS"))
|
||||||
(MES_SEED (or (getenv "MES_SEED") "../mes-seed"))
|
(MES_SEED (or (getenv "MES_SEED") "../mes-seed"))
|
||||||
|
(MESCC_TOOLS_SEED (or (getenv "MESCC_TOOLS_SEED") "../mescc-tools-seed"))
|
||||||
(TINYCC_SEED (or (getenv "TINYCC_SEED") "../tinycc-seed")))
|
(TINYCC_SEED (or (getenv "TINYCC_SEED") "../tinycc-seed")))
|
||||||
(when help?
|
(when help?
|
||||||
(print-help)
|
(print-help)
|
||||||
|
@ -298,6 +300,7 @@ Some influential environment variables:
|
||||||
(stdout "CC32:=~a\n" (or CC32 ""))
|
(stdout "CC32:=~a\n" (or CC32 ""))
|
||||||
(stdout "BLOOD_ELF:=~a\n" (or BLOOD_ELF ""))
|
(stdout "BLOOD_ELF:=~a\n" (or BLOOD_ELF ""))
|
||||||
(stdout "MES_SEED:=~a\n" (or MES_SEED ""))
|
(stdout "MES_SEED:=~a\n" (or MES_SEED ""))
|
||||||
|
(stdout "MESCC_TOOLS_SEED:=~a\n" (or MESCC_TOOLS_SEED ""))
|
||||||
(stdout "TINYCC_SEED:=~a\n" (or TINYCC_SEED ""))
|
(stdout "TINYCC_SEED:=~a\n" (or TINYCC_SEED ""))
|
||||||
(stdout "HEX2:=~a\n" (or HEX2 ""))
|
(stdout "HEX2:=~a\n" (or HEX2 ""))
|
||||||
(stdout "M1:=~a\n" (or M1 ""))
|
(stdout "M1:=~a\n" (or M1 ""))
|
||||||
|
|
Loading…
Reference in a new issue