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