Subversion Repositories HelenOS-historic

Rev

Rev 708 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
679 decky 1
.PHONY=build kernel clean
2
 
3
ROOT=distroot
4
BASE=$(shell cd ../../..; pwd)
5
KERNELDIR=$(BASE)/kernel
6
 
7
build: kernel
8
	gunzip -c grub/grub.img.gz > image.bin
9
	e2cp $(KERNELDIR)/kernel.bin image.bin:/boot/kernel.bin
10
 
11
kernel:
12
	$(MAKE) -C $(KERNELDIR)
13
 
14
clean:
15
	-rm image.bin