Newer
Older
ubixos / Makefile
@reddawg reddawg on 4 May 2002 242 bytes Fixing
# $Id$
# The System Makefile (C) 2002 The UbixOS Project

all: libc kernel

libc: src
	(cd src/lib/libc;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)