# # FreeLoader # Copyright (C) 1999, 2000, 2001 Brian Palmer # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. # RM = cmd /C del NASM_CMD = nasm BIN2C = ../tools/bin2c TOOLSDIR = ../tools .PHONY : clean all: $(BIN2C) fat.bin fat32.bin isoboot.bin $(BIN2C) : @$(MAKE) --no-print-directory -C $(TOOLSDIR) fat.bin : fat.asm $(BIN2C) @echo ===================================================== Assembling fat @$(NASM_CMD) -o fat.bin -f bin fat.asm @$(BIN2C) fat.bin fat.h fat_data fat32.bin : fat32.asm $(BIN2C) @echo ===================================================== Assembling fat32 @$(NASM_CMD) -o fat32.bin -f bin fat32.asm @$(BIN2C) fat32.bin fat32.h fat32_data isoboot.bin : isoboot.asm @echo ===================================================== Assembling isoboot @$(NASM_CMD) -o isoboot.bin -f bin isoboot.asm clean: @-$(RM) *.bin @-$(RM) *.h @echo Clean ALL done.