Newer
Older
ubixos / Makefile
@reddawg reddawg on 28 May 2002 300 bytes Its Been lots of work
# $Id$
# The System Makefile (C) 2002 The UbixOS Project

all: libc bin kernel

libc: src
	(cd src/lib/libc;make)

bin: src
	(cd src/bin;make)

kernel: src
	(cd src/sys;make)

install:
	(cd src/sys;make install)
	
clean:
	(cd src/sys;make clean)
	(cd src/lib/libc;make clean)
	(cd src/bin;make clean)