3 include ../MakePaths.dir
6 INSTALLDIR = $(DSTROOT)/usr/standalone/i386
7 DIRS_NEEDED = $(SYMROOT)
9 all: $(DIRS_NEEDED) boot0
11 boot0: boot0.s Makefile $(NASM)
12 $(NASM) boot0.s -o $(SYMROOT)/$@
14 install_i386:: all $(INSTALLDIR)
15 cp $(SYMROOT)/boot0 $(INSTALLDIR)
16 cd $(INSTALLDIR); chmod u+w boot0
18 include ../MakeInc.dir