# $Id$ # The System Makefile (C) 2002 The UbixOS Project all: init-bin shell-bin test-bin init-bin: init (cd init;make) shell-bin: shell (cd shell;make) test-bin: test (cd test;make) clean: (cd init;make clean) (cd shell;make clean) (cd test;make clean)