Rev 708 | Rev 725 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 708 | Rev 709 | ||
|---|---|---|---|
| Line 28... | Line 28... | ||
| 28 | 28 | ||
| 29 | TMP=distroot |
29 | TMP=distroot |
| 30 | 30 | ||
| 31 | build: image.iso |
31 | build: image.iso |
| 32 | 32 | ||
| 33 | image.iso: kernel uspace |
33 | image.iso: kernel |
| 34 | mkdir -p $(TMP)/boot |
34 | mkdir -p $(TMP)/boot |
| 35 | mkdir -p $(TMP)/kernel |
35 | mkdir -p $(TMP)/kernel |
| 36 | cat arch/$(ARCH)/silo/silo.tar.gz | (cd $(TMP)/boot; tar xvfz -) |
36 | cat arch/$(ARCH)/silo/silo.tar.gz | (cd $(TMP)/boot; tar xvfz -) |
| 37 | cp arch/$(ARCH)/silo/README arch/$(ARCH)/silo/COPYING arch/$(ARCH)/silo/silo.conf $(TMP)/boot |
37 | cp arch/$(ARCH)/silo/README arch/$(ARCH)/silo/COPYING arch/$(ARCH)/silo/silo.conf $(TMP)/boot |
| 38 | ln -s $(KERNELDIR)/kernel.bin $(TMP)/kernel |
38 | ln -s $(KERNELDIR)/kernel.bin $(TMP)/kernel |
| Line 41... | Line 41... | ||
| 41 | clean: clean_kernel |
41 | clean: clean_kernel |
| 42 | -rm -fr $(TMP) |
42 | -rm -fr $(TMP) |
| 43 | -rm -f image.iso |
43 | -rm -f image.iso |
| 44 | 44 | ||
| 45 | arch_distclean: distclean_kernel |
45 | arch_distclean: distclean_kernel |
| 46 | - | ||