From 127f35b9f583ba378b8507c5e8011182be4323f0 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Wed, 25 Aug 1999 12:12:01 +0000 Subject: no_comment --- Makefile | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 000000000..471e5abfc --- /dev/null +++ b/Makefile @@ -0,0 +1,30 @@ +BOOT_IMG = mdkinst_hd.img mdkinst_cdrom.img mdkinst_network.img mdkinst_network_ks.img +BINS = install/install install/local-install install/installinit/init + + + +.PHONY: $(BOOT_IMG) $(FLOPPY_IMG) $(BINS) update_kernel + +all: $(BOOT_IMG) + mkdir /export/images + cp -f $(BOOT_IMG) /export/images + +clean: + rm -rf $(BOOT_IMG) $(BINS) modules vmlinuz + +$(BOOT_IMG): $(BINS) + if [ ! -e modules ]; then $(MAKE) update_kernel; fi + ./make_boot_img $@ $(@:mdkinst_%.img=%) + +$(BINS): + $(MAKE) -C `dirname $@` + + +update_kernel: + ./update_kernel + +$(BOOT_IMG:%=%f): %f: % + dd if=$< of=/dev/fd0 + xmessage "Floppy done" + +# mkisofs -R -b images/mdkinst_cdrom.img -c images/b /tmp/r /mnt/disk/ | cdrecord -v -eject speed=6 dev=1,0 - \ No newline at end of file -- cgit v1.2.1