Newer
Older
ubix / src / sys / Makefile
@reddawg reddawg on 2 May 2002 177 bytes All UbixOS Code
# $Id$
# Kernel Makefile (C) 2002 The UbixOS Project

all: boot-code init-code

boot-code: boot
	(cd boot;make)
	
init-code: init
	(cd init;make)
	
clean:
	(cd boot;make clean)