]> git.saurik.com Git - apple/boot.git/blob - i386/boot1/Makefile
boot-83.2.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 = boot1 boot1f
11
12 VERS = `vers_string -f 5.0 | tr - .`
13 NEW_VERS = Rhapsody boot1 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 boot1: boot1.s Makefile
23 $(NASM) -dBOOTDEV=HDISK -dVERS="'$(NEW_VERS)'" boot1.s -o $(SYMROOT)/$@
24
25 boot1f: boot1.s Makefile
26 $(NASM) -dBOOTDEV=FLOPPY -dVERS="'$(NEW_VERS)'" boot1.s -o $(SYMROOT)/$@
27
28 install_i386:: all $(INSTALLDIR)
29 cp $(SYMROOT)/boot1 $(INSTALLDIR)/
30 cp $(SYMROOT)/boot1f $(INSTALLDIR)/
31 cd $(INSTALLDIR); chmod u+w $(VERSIONED_FILES)
32
33 include ../MakeInc.dir