31 lines
512 B
Makefile
31 lines
512 B
Makefile
########################
|
|
# Author: Josh Holtrop #
|
|
# Date: 2004-2-15 #
|
|
########################
|
|
|
|
# Assembler information:
|
|
NASM_BIN=nasm
|
|
|
|
#################
|
|
# Build the IPL #
|
|
#################
|
|
all: stage1 stage2
|
|
|
|
################
|
|
# IPL: Stage 1 #
|
|
################
|
|
stage1: stage1.asm
|
|
$(NASM_BIN) stage1.asm -o stage1.bin
|
|
|
|
################
|
|
# IPL: Stage 2 #
|
|
################
|
|
stage2: stage2.asm
|
|
$(NASM_BIN) stage2.asm -o stage2.bin
|
|
|
|
#########
|
|
# Clean #
|
|
#########
|
|
clean:
|
|
- rm *.bin
|