# Makefile for bootloader # # Copy right Antonius B. de Rozari (c) 2000.... should be GPL # # Modified by Stellios Keskinidis # April 2001 install: bootsect @ echo -e " Make sure there is a floppy disk in the drive" \ "\n and you don't want to overwrite the data on it !!!!!" \ "\n otherwise REMOVE THE FLOPPY!!!" @ echo "press enter to continue otherwise ctrl-c to exit" @ read @ echo "writing bootsector to floppy drive ..." dd if=./bootsect of=/dev/fd0 bs=512 count=1 bootsect: boot.o objcopy -O binary boot.o bootsect boot.o: boot.s as -o boot.o boot.s clean: rm bootsect boot.o