]> git.saurik.com Git - apple/boot.git/blobdiff - i386/boot1/Makefile
boot-83.2.tar.gz
[apple/boot.git] / i386 / boot1 / Makefile
index 0cd0a9fb2d7657e665ed789886537e15f78da558..b8f16d078dc55795dc0c086ce827704198cdfe61 100644 (file)
@@ -5,11 +5,9 @@ include ../MakePaths.dir
 INSTALLDIR = $(DSTROOT)/usr/standalone/i386
 DIRS_NEEDED = $(OBJROOT) $(SYMROOT)
 
-FOREIGNNEXT = boot1f
-
 NASM = $(SYMROOT)/nasm
 
-VERSIONED_FILES = boot1f
+VERSIONED_FILES = boot1 boot1f
 
 VERS = `vers_string -f 5.0 | tr - .`
 NEW_VERS = Rhapsody boot1 v$(VERS)
@@ -21,11 +19,15 @@ endif
 
 all: $(DIRS_NEEDED) $(VERSIONED_FILES)
 
+boot1: boot1.s Makefile
+       $(NASM) -dBOOTDEV=HDISK -dVERS="'$(NEW_VERS)'" boot1.s -o $(SYMROOT)/$@
+       
 boot1f: boot1.s Makefile
        $(NASM) -dBOOTDEV=FLOPPY -dVERS="'$(NEW_VERS)'" boot1.s -o $(SYMROOT)/$@
 
 install_i386:: all $(INSTALLDIR)
+       cp $(SYMROOT)/boot1 $(INSTALLDIR)/
        cp $(SYMROOT)/boot1f $(INSTALLDIR)/
-       cd $(INSTALLDIR); chmod u+w $(FOREIGNNEXT)
+       cd $(INSTALLDIR); chmod u+w $(VERSIONED_FILES) 
 
 include ../MakeInc.dir