Newer
Older
ubixos / src / bin / Makefile
@reddawg reddawg on 25 Jul 2002 266 bytes Working on things fixing bugs the usual
# $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)