BOOTTAR=http://debian.lcs.mit.edu/debian/dists/lenny/main/installer-i386/current/images/netboot/netboot.tar.gz

all: preseed.cfg tftpboot

netboot.tar.gz:
	wget $(BOOTTAR)

tftpboot: netboot.tar.gz
	mkdir tftpboot
	tar xvzfC netboot.tar.gz tftpboot
	install files/C00002 tftpboot/pxelinux.cfg

ssh_key.pub ssh_key:
	ssh-keygen -N '' -C 'test key' -f ssh_key -t rsa

preseed.cfg: preseed.cfg.in ssh_key.pub
	sed -e 's,@TEST_KEY@,$(shell cat ssh_key.pub),' preseed.cfg.in > preseed.cfg
