diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-11-09 10:30:58 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-11-09 10:30:58 +0100 |
| commit | 67716b2871b1117510b26bc1aaf6fce7195272dc (patch) | |
| tree | 4bbc0a51e0d8cb6234a830baa713377dad3de325 /dev/SCIKit/src/Makefile | |
| parent | a2013145412c7cf7eb461833f7853d80caa88723 (diff) | |
META: Important refactors and include SCIKit.dylib when building bootloader.
Diffstat (limited to 'dev/SCIKit/src/Makefile')
| -rw-r--r-- | dev/SCIKit/src/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/dev/SCIKit/src/Makefile b/dev/SCIKit/src/Makefile index 68a6407b..90da7b01 100644 --- a/dev/SCIKit/src/Makefile +++ b/dev/SCIKit/src/Makefile @@ -1,3 +1,11 @@ +################################################## +# (c) Amlal EL Mahrouss, all rights reserved. +# This is the bootloader makefile. +################################################## + +ASM=nasm +FLAGS=-f win64 + .PHONY: syscall_unit syscall_unit: - nasm -f win64 DispatchSysCalls.asm -o DispatchSysCalls.obj + $(ASM) $(FLAGS) DispatchSysCalls.asm -o DispatchSysCalls.obj |
