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

include ../Makefile.common

STAGE2=stage2.bin

ASM_SOURCES=$(wildcard *.asm)

$(STAGE2): $(ASM_SOURCES)

clean: 
	-rm $(STAGE2)