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