summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 0dda119f09c1841bb839abe30225cb24b76e214e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
BOOT_IMG = gi_hd.img gi_cdrom.img gi_network.img gi_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 2>/dev/null ; true
	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 $@ $(@:gi_%.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/gi_cdrom.img -c images/.catalog /tmp/r /mnt/disk/ | cdrecord -v -eject speed=6 dev=1,0 -