]> git.saurik.com Git - apple/boot.git/blobdiff - i386/boot1/Makefile
boot-122.tar.gz
[apple/boot.git] / i386 / boot1 / Makefile
index 9fd2dd513ab50e38e330ce84af8ef1997d32a594..cb32e5f9184e9f08752a0cc99b6fd397d663f85f 100644 (file)
@@ -7,7 +7,7 @@ DIRS_NEEDED = $(OBJROOT) $(SYMROOT)
 
 NASM = $(SYMROOT)/nasm
 
-VERSIONED_FILES = boot1h boot1f
+VERSIONED_FILES = boot1h
 
 VERS = `vers_string -f 5.0 | tr - .`
 NEW_VERS = Darwin boot1h v$(VERS)
@@ -21,13 +21,12 @@ all: $(DIRS_NEEDED) $(VERSIONED_FILES)
 
 boot1h: 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)/boot1h $(INSTALLDIR)/
-       cp $(SYMROOT)/boot1f $(INSTALLDIR)/
        cd $(INSTALLDIR); chmod u+w $(VERSIONED_FILES) 
 
+clean::
+       rm -f $(SYMROOT)/boot1h
+
 include ../MakeInc.dir