diff options
Diffstat (limited to 'dev/LibSCI/src/Makefile')
| -rw-r--r-- | dev/LibSCI/src/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/dev/LibSCI/src/Makefile b/dev/LibSCI/src/Makefile new file mode 100644 index 00000000..eb655ed5 --- /dev/null +++ b/dev/LibSCI/src/Makefile @@ -0,0 +1,16 @@ +################################################## +# (c) Amlal EL Mahrouss, all rights reserved. +# This is the bootloader makefile. +################################################## + +ASM=nasm +FLAGS=-f win64 + +.PHONY: error +error: + @echo "==> Invalid rule." + @echo "==> Use sci_asm_io_<arch> instead." + +.PHONY: sci_asm_io_x64 +sci_asm_io_x64: + $(ASM) $(FLAGS) LibSCI+IO.asm -o LibSCI+IO.o |
