aboutsummaryrefslogtreecommitdiffstats
path: root/lib/AdminPanel/Shared
diff options
context:
space:
mode:
Diffstat (limited to 'lib/AdminPanel/Shared')
0 files changed, 0 insertions, 0 deletions
691219756bef187f00dc560b5b259d492ee5e2e1'>root/Makefile
blob: 471e5abfc56a963b6ca02d04c8caf3d168c0daf4 (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 = 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"