Newer
Older
ubixos / src / bin / Makefile
@reddawg reddawg on 6 Jun 2002 203 bytes Enhancements
# $Id$
# The System Makefile (C) 2002 The UbixOS Project

all: init-bin shell-bin

init-bin: init 
	(cd init;make)

shell-bin: shell
	(cd shell;make)

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