# $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)