From 3e4facad522d93dbf52b3bd3bde917a8e18ef61e Mon Sep 17 00:00:00 2001 From: crc <> Date: Sat, 3 Sep 2022 22:19:16 +0000 Subject: [PATCH] default `make` rule now runs `clean` target first FossilOrigin-Name: a03379c700101a5bbed5540b117086d3aa7338cf48b9a91cfc8c1be3ff5e0aed --- GNUmakefile | 2 +- Makefile | 2 +- RELEASE-NOTES | 15 ++++++++------- 3 files changed, 10 insertions(+), 9 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index 6295d47..13f32d5 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -87,7 +87,7 @@ DEVICES += interface/malloc.retro # ------------------------------------------------------------- -all: build +all: clean build help: diff --git a/Makefile b/Makefile index 91929e4..ae136d6 100644 --- a/Makefile +++ b/Makefile @@ -72,7 +72,7 @@ DEVICES += interface/malloc.retro # ------------------------------------------------------------- -all: build +all: clean build help: diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 138358c..77ecf01 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -1,10 +1,10 @@ - _ __ _ _ __ - _ __ ___| |_ _ __ ___ / _| ___ _ __| |_| |__ / / __ __ _ __ _ -| '__/ _ \ __| '__/ _ \| |_ / _ \| '__| __| '_ \ / / '_ \ / _` |/ _` | -| | | __/ |_| | | (_) | _| (_) | | | |_| | | |/ /| | | | (_| | (_| | -|_| \___|\__|_| \___/|_| \___/|_| \__|_| |_/_/ |_| |_|\__, |\__,_| - |___/ -# RetroForth 2023.1 Release Notes + _ __ _ _ + _ __ ___| |_ _ __ ___ / _| ___ _ __| |_| |__ +| '__/ _ \ __| '__/ _ \| |_ / _ \| '__| __| '_ \ +| | | __/ |_| | | (_) | _| (_) | | | |_| | | | +|_| \___|\__|_| \___/|_| \___/|_| \__|_| |_| + for nga +# RetroForth/nga 2023.1 Release Notes ---------------------------------------------------------------- @@ -12,5 +12,6 @@ * added `script:current-line-text` (#85) * added `double:dip` * added `double:sip` +* default build is now 64-bit ----------------------------------------------------------------