Put back aliases.

This commit is contained in:
Brad Nelson
2023-12-24 14:06:30 -08:00
parent 92ace2753e
commit 18c38cab15
5 changed files with 9 additions and 8 deletions

9
BUILD
View File

@ -18,9 +18,8 @@ Include('web')
Include('pico-ice') Include('pico-ice')
Include('esp32') Include('esp32')
Default('win32') Default('windows')
Default('win64') Default('posix')
Default('unix') Default('web')
Default('html') Default('esp32')
Default('esp')
Default('pico') Default('pico')

View File

@ -54,4 +54,4 @@ Compile('gen/print-esp32-builtins', '$src/esp32/print-builtins.cpp'),
Run('gen/esp32_sim_opcodes.h', 'gen/print-esp32-builtins') Run('gen/esp32_sim_opcodes.h', 'gen/print-esp32-builtins')
# Main Alias. # Main Alias.
Alias('esp', ' '.join(ESP32_FILES)) Alias('esp32', ' '.join(ESP32_FILES))

View File

@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
Alias('unix', 'posix/ueforth') Alias('posix', 'posix/ueforth')
Importation('gen/posix_boot.h', '$src/posix/posix_boot.fs', name='boot') Importation('gen/posix_boot.h', '$src/posix/posix_boot.fs', name='boot')
Compile('posix/ueforth', '$src/posix/main.c', Compile('posix/ueforth', '$src/posix/main.c',
implicit=['gen/posix_boot.h']) implicit=['gen/posix_boot.h'])

View File

@ -12,5 +12,5 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # 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') Importation('gen/web_boot.js', '$src/web/web_boot.fs', header_mode='web', name='boot')

View File

@ -12,6 +12,8 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
Alias('windows', 'win32 win64')
# Create boot. # Create boot.
Importation('gen/windows_boot.h', '$src/windows/windows_boot.fs', Importation('gen/windows_boot.h', '$src/windows/windows_boot.fs',
header_mode='win', name='boot') header_mode='win', name='boot')