blob: 91a7a3a5b97423ecd3840ac136c15c5f0eee9bd8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
##################################################
# (c) t& Corporation, 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
|