diff options
| author | Amlal <amlalelmahrouss@icloud.com> | 2024-12-21 21:59:13 +0100 |
|---|---|---|
| committer | Amlal <amlalelmahrouss@icloud.com> | 2024-12-21 21:59:45 +0100 |
| commit | 610f91d87152cbe48d3054fcf437d8239da6ef35 (patch) | |
| tree | a386f7047ab73d088169ab2371ddc6ffe8020f1c /dev/SCIKit/src/Makefile | |
| parent | 509fcca5986651c8ba712fb395f8498f2dea4109 (diff) | |
IMP: :boom: Breaking changes some checks are needed to be done.
Signed-off-by: Amlal <amlalelmahrouss@icloud.com>
Diffstat (limited to 'dev/SCIKit/src/Makefile')
| -rw-r--r-- | dev/SCIKit/src/Makefile | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/dev/SCIKit/src/Makefile b/dev/SCIKit/src/Makefile index b14cc60d..22f7a44d 100644 --- a/dev/SCIKit/src/Makefile +++ b/dev/SCIKit/src/Makefile @@ -1,11 +1,16 @@ ################################################## -# (c) Theater Quality Inc, all rights reserved. +# (c) TQ B.V, all rights reserved. # This is the bootloader makefile. ################################################## ASM=nasm FLAGS=-f win64 -.PHONY: syscall_unit -syscall_unit: - $(ASM) $(FLAGS) SysCallDispatcher.asm -o SysCallDispatcher.o +.PHONY: error +error: + @echo "==> Invalid rule." + @echo "==> Use sci_asm_io instead." + +.PHONY: sci_asm_io +sci_asm_io: + $(ASM) $(FLAGS) SCI+IO.asm -o SCI+IO.o |
