From 18c38cab159d57b4f5895ebcc3c2d0e9a158e334 Mon Sep 17 00:00:00 2001 From: Brad Nelson Date: Sun, 24 Dec 2023 14:06:30 -0800 Subject: [PATCH] Put back aliases. --- BUILD | 9 ++++----- esp32/BUILD | 2 +- posix/BUILD | 2 +- web/BUILD | 2 +- windows/BUILD | 2 ++ 5 files changed, 9 insertions(+), 8 deletions(-) diff --git a/BUILD b/BUILD index 1633a81..21c9743 100644 --- a/BUILD +++ b/BUILD @@ -18,9 +18,8 @@ Include('web') Include('pico-ice') Include('esp32') -Default('win32') -Default('win64') -Default('unix') -Default('html') -Default('esp') +Default('windows') +Default('posix') +Default('web') +Default('esp32') Default('pico') diff --git a/esp32/BUILD b/esp32/BUILD index f373fcd..b93b483 100644 --- a/esp32/BUILD +++ b/esp32/BUILD @@ -54,4 +54,4 @@ Compile('gen/print-esp32-builtins', '$src/esp32/print-builtins.cpp'), Run('gen/esp32_sim_opcodes.h', 'gen/print-esp32-builtins') # Main Alias. -Alias('esp', ' '.join(ESP32_FILES)) +Alias('esp32', ' '.join(ESP32_FILES)) diff --git a/posix/BUILD b/posix/BUILD index 7709996..2ec8b91 100644 --- a/posix/BUILD +++ b/posix/BUILD @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -Alias('unix', 'posix/ueforth') +Alias('posix', 'posix/ueforth') Importation('gen/posix_boot.h', '$src/posix/posix_boot.fs', name='boot') Compile('posix/ueforth', '$src/posix/main.c', implicit=['gen/posix_boot.h']) diff --git a/web/BUILD b/web/BUILD index cf101fe..e02c8ba 100644 --- a/web/BUILD +++ b/web/BUILD @@ -12,5 +12,5 @@ # See the License for the specific language governing permissions and # limitations under the License. -Alias('html', 'gen/web_boot.js') +Alias('web', 'gen/web_boot.js') Importation('gen/web_boot.js', '$src/web/web_boot.fs', header_mode='web', name='boot') diff --git a/windows/BUILD b/windows/BUILD index cd29e3f..f9061c7 100644 --- a/windows/BUILD +++ b/windows/BUILD @@ -12,6 +12,8 @@ # See the License for the specific language governing permissions and # limitations under the License. +Alias('windows', 'win32 win64') + # Create boot. Importation('gen/windows_boot.h', '$src/windows/windows_boot.fs', header_mode='win', name='boot')