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

include ../Makefile.common

.PHONY: all clean

STAGE2=stage2.bin
MP=mp.bin

ASM_SOURCES=$(wildcard *.asm)

all: $(STAGE2) $(MP)

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

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