# Makefile for bootloader # # Copy right Antonius B. de Rozari (c) 2000.... should be GPL # # Define install: bootsect 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