Use implicit mkdir.

This commit is contained in:
Brad Nelson
2023-12-24 14:03:53 -08:00
parent bf21b0f3c2
commit 92ace2753e
3 changed files with 15 additions and 34 deletions

View File

@ -15,7 +15,6 @@
ESP32_FILES = []
# Main .ino file.
Mkdir('esp32/ESP32forth')
ESP32_FILES += [
Importation('esp32/ESP32forth/README.txt',
'$src/esp32/README.txt'),
@ -26,7 +25,6 @@ ESP32_FILES += [
Importation('gen/esp32_boot.h', '$src/esp32/esp32_boot.fs', name='boot')
# Optional Compontents.
Mkdir('esp32/ESP32forth/optional')
ESP32_FILES += [
Importation('esp32/ESP32forth/optional/README-optional.txt',
'$src/esp32/optional/README-optional.txt'),
@ -48,7 +46,6 @@ ESP32_FILES += [
]
# Simulator.
Mkdir('esp32-sim')
ESP32_FILES += [
Compile('esp32-sim/esp32-sim', '$src/esp32/sim_main.cpp',
implicit=['gen/esp32_boot.h', 'gen/esp32_sim_opcodes.h'])