Subversion Repositories HelenOS-historic

Rev

Rev 933 | Rev 1369 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 933 Rev 1219
Line 26... Line 26...
26
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
#
27
#
28
 
28
 
29
build: image.boot
29
build: image.boot
30
 
30
 
31
image.boot: kernel
31
image.boot: kernel uspace
32
	make -C arch/$(ARCH)/loader COMPILER=$(COMPILER) KERNEL=../../../$(KERNELDIR)/kernel.bin
32
	make -C arch/$(ARCH)/loader COMPILER=$(COMPILER) KERNEL=../../../$(KERNELDIR)/kernel.bin INIT=../../../$(USPACEDIR)/init/init
33
	cp arch/$(ARCH)/loader/image.boot image.boot
33
	cp arch/$(ARCH)/loader/image.boot image.boot
34
 
34
 
35
clean: clean_kernel
35
clean: clean_kernel clean_uspace
36
	make -C arch/$(ARCH)/loader clean
36
	make -C arch/$(ARCH)/loader clean
37
	-rm -f image.boot
37
	-rm -f image.boot
38
 
38
 
39
arch_distclean: distclean_kernel
39
arch_distclean: distclean_kernel distclean_uspace