]> git.saurik.com Git - apple/boot.git/blob - i386/boot0/Makefile
boot-80.1.tar.gz
[apple/boot.git] / i386 / boot0 / Makefile
1
2 DIR = boot0
3 include ../MakePaths.dir
4
5 NASM = $(SYMROOT)/nasm
6 INSTALLDIR = $(DSTROOT)/usr/standalone/i386
7 DIRS_NEEDED = $(SYMROOT)
8
9 all: $(DIRS_NEEDED) boot0
10
11 boot0: boot0.s Makefile $(NASM)
12 $(NASM) boot0.s -o $(SYMROOT)/$@
13
14 install_i386:: all $(INSTALLDIR)
15 cp $(SYMROOT)/boot0 $(INSTALLDIR)
16 cd $(INSTALLDIR); chmod u+w boot0
17
18 include ../MakeInc.dir
19
20 #dependencies
21