Adding tasks.

This commit is contained in:
Brad Nelson
2021-01-08 09:06:57 -08:00
parent 45ef922f98
commit 6cd7a2e14f
3 changed files with 37 additions and 2 deletions

View File

@ -71,7 +71,8 @@ $(GEN):
POSIX_BOOT = common/boot.fs common/terminal.fs \
posix/posix.fs posix/posix_highlevel.fs \
common/filetools.fs posix/posix_desktop.fs
common/filetools.fs posix/posix_desktop.fs \
common/tasks.fs
$(GEN)/posix_boot.h: common/source_to_string.js $(POSIX_BOOT) | $(GEN)
echo "ok" | cat $(POSIX_BOOT) - | $< boot >$@
@ -81,7 +82,7 @@ $(GEN)/windows_boot.h: common/source_to_string.js $(WINDOWS_BOOT) | $(GEN)
ARDUINO_BOOT = common/boot.fs arduino/arduino.fs \
posix/posix_highlevel.fs common/filetools.fs \
arduino/arduino_server.fs \
common/tasks.fs arduino/arduino_server.fs \
arduino/autoboot.fs
$(GEN)/arduino_boot.h: common/source_to_string.js $(ARDUINO_BOOT) | $(GEN)
echo "ok" | cat $(ARDUINO_BOOT) - | $< boot >$@