Added boot carrier for freeldr. I'm at the point where I need to do
[reactos.git] / reactos / boot / freeldr / bootsect / Makefile
index 87a9a1b..e78fd12 100644 (file)
@@ -25,56 +25,8 @@ BOOTCD_DIR   = $(PATH_TO_TOP)/../bootcd
 
 .PHONY : clean bootcd
 
-all: $(BIN2C) dosmbr.bin fat.bin fat32.bin isoboot.bin ext2.bin
-
-
-$(BIN2C) :
-       @$(MAKE) --no-print-directory -C $(FREELDR_TOOLS_PATH)
-
-dosmbr.bin : dosmbr.asm
-       @echo ===================================================== Assembling dosmbr
-       @$(NASM_CMD) $(NFLAGS) -o dosmbr.bin -f bin dosmbr.asm
-
-fat.bin : fat.asm $(BIN2C)
-       @echo ===================================================== Assembling fat
-       @$(NASM_CMD) $(NFLAGS) -o fat.bin -f bin fat.asm
-       @$(BIN2C) fat.bin fat.h fat_data
-
-
-fat32.bin : fat32.asm $(BIN2C)
-       @echo ===================================================== Assembling fat32
-       @$(NASM_CMD) $(NFLAGS) -o fat32.bin -f bin fat32.asm
-       @$(BIN2C) fat32.bin fat32.h fat32_data
-
-isoboot.bin : isoboot.asm
-       @echo ===================================================== Assembling isoboot
-       @$(NASM_CMD) $(NFLAGS) -o isoboot.bin -f bin isoboot.asm
-
-ext2.bin : ext2.asm
-       @echo ===================================================== Assembling ext2
-       @$(NASM_CMD) $(NFLAGS) -o ext2.bin -f bin ext2.asm
-       @$(BIN2C) ext2.bin ext2.h ext2_data
-
-
-.PHONY : bootcd
-bootcd: bootcd_dirs isoboot.bin
-       $(CP) isoboot.bin $(BOOTCD_DIR)
-       $(CP) dosmbr.bin $(BOOTCD_DIR)/disk/loader
-       $(CP) ext2.bin $(BOOTCD_DIR)/disk/loader
-       $(CP) fat.bin $(BOOTCD_DIR)/disk/loader
-       $(CP) fat32.bin $(BOOTCD_DIR)/disk/loader
-       $(CP) isoboot.bin $(BOOTCD_DIR)/disk/loader
-
-.PHONY : bootcd_dirs
-bootcd_dirs:
-       $(MKDIR) $(BOOTCD_DIR)
-       $(MKDIR) $(BOOTCD_DIR)/disk
-       $(MKDIR) $(BOOTCD_DIR)/disk/reactos
-       $(MKDIR) $(BOOTCD_DIR)/disk/install
-       $(MKDIR) $(BOOTCD_DIR)/disk/bootdisk
-       $(MKDIR) $(BOOTCD_DIR)/disk/loader
-
-clean:
-       @-$(RM) *.bin
-       @-$(RM) *.h
-       @echo Clean ALL done.
+ifeq ($(ARCH),powerpc)
+include Makefile.powerpc
+else
+include Makefile.i386
+endif