summaryrefslogtreecommitdiff
path: root/boot2/Makefile
blob: f1de230b7fa7b008e4cffb18ac5d77c3ae385a1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#master boot record

include ../Makefile.common

STAGE2=stage2.bin
MP=mp.bin

ASM_SOURCES=$(wildcard *.asm)

$(STAGE2): $(ASM_SOURCES)
$(MP): $(ASM_SOURCES)

clean: 
	-rm $(STAGE2) $(MP)