]> git.saurik.com Git - apple/boot.git/blob - i386/boot1/Makefile
boot-132.tar.gz
[apple/boot.git] / i386 / boot1 / Makefile
1
2 DIR = boot1
3 include ../MakePaths.dir
4
5 INSTALLDIR = $(DSTROOT)/usr/standalone/i386
6 DIRS_NEEDED = $(OBJROOT) $(SYMROOT)
7
8 NASM = $(SYMROOT)/nasm
9
10 VERSIONED_FILES = boot1h
11
12 VERS = `vers_string -f 5.0 | tr - .`
13 NEW_VERS = Darwin boot1h v$(VERS)
14 ifneq "" "$(wildcard /bin/mkdirs)"
15 MKDIRS = /bin/mkdirs
16 else
17 MKDIRS = /bin/mkdir -p
18 endif
19
20 all: $(DIRS_NEEDED) $(VERSIONED_FILES)
21
22 boot1h: boot1.s Makefile
23 $(NASM) -dBOOTDEV=HDISK -dVERS="'$(NEW_VERS)'" boot1.s -o $(SYMROOT)/$@
24
25 install_i386:: all $(INSTALLDIR)
26 cp $(SYMROOT)/boot1h $(INSTALLDIR)/
27 cd $(INSTALLDIR); chmod u+w $(VERSIONED_FILES)
28
29 clean::
30 rm -f $(SYMROOT)/boot1h
31
32 include ../MakeInc.dir