
all: ../../diskboot.img

../../diskboot.img: booterfd.exe pam.com ../../l4kernel
	rm -f $@
	dd bs=512 if=booterfd.exe skip=1 of=$@ 
	dd bs=256 if=pam.com of=$@ seek=73
#	dd bs=512 if=booterhd.exe skip=1 of=$@ seek=170
	dd bs=512 if=../../l4kernel of=$@ seek=171

clean:
	rm -f ../../diskboot.img
