Newer
Older
ubixos / src / bin / Makefile
@reddawg reddawg on 5 Aug 2002 319 bytes Forgot To Commit This File
# $Id$
# The System Makefile (C) 2002 The UbixOS Project

all: init-bin shell-bin test-bin ls-bin

init-bin: init 
	(cd init;make)

shell-bin: shell
	(cd shell;make)

test-bin: test
	(cd test;make)

ls-bin: ls
	(cd ls;make)

clean:
	(cd init;make clean)
	(cd shell;make clean)
	(cd test;make clean)
	(cd ls;make clean)