Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 708 → Rev 707

/boot/trunk/arch/ia32/Makefile.inc
File deleted
/boot/trunk/arch/ia32/Makefile
0,0 → 1,20
.PHONY=build kernel uspace clean
 
ROOT=distroot
BASE=$(shell cd ../../..; pwd)
KERNELDIR=$(BASE)/kernel
USPACEDIR=$(BASE)/uspace
 
build: kernel uspace
gunzip -c grub/grub.img.gz > image.bin
e2cp $(KERNELDIR)/kernel.bin image.bin:/boot/kernel.bin
e2cp $(USPACEDIR)/init/init image.bin:/init
 
kernel:
$(MAKE) -C $(KERNELDIR)
 
uspace:
$(MAKE) -C $(USPACEDIR)
 
clean:
-rm image.bin