source: mainline/arch/ia32/Makefile@ 989bad7

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 989bad7 was 989bad7, checked in by Martin Decky <martin@…>, 20 years ago

store README and COPYING directly in GRUB floppy image

  • Property mode set to 100644
File size: 384 bytes
RevLine 
[224dad8]1.PHONY=build kernel uspace clean
[7e00430]2
3ROOT=distroot
4BASE=$(shell cd ../../..; pwd)
5KERNELDIR=$(BASE)/kernel
[856b5e70]6USPACEDIR=$(BASE)/uspace
[7e00430]7
[224dad8]8build: kernel uspace
[7e00430]9 gunzip -c grub/grub.img.gz > image.bin
[856b5e70]10 e2cp $(KERNELDIR)/kernel.bin image.bin:/boot/kernel.bin
11 e2cp $(USPACEDIR)/init/init image.bin:/init
[7e00430]12
[224dad8]13kernel:
[7e00430]14 $(MAKE) -C $(KERNELDIR)
15
[224dad8]16uspace:
[856b5e70]17 $(MAKE) -C $(USPACEDIR)
18
[7e00430]19clean:
20 -rm image.bin
Note: See TracBrowser for help on using the repository browser.