# KallistiOS 0.6
#
# userland/Makefile
# (c)2000 Dan Potter
#   
# $Id: Makefile,v 1.4 2000/11/12 01:27:35 bard Exp $

# This is a wrapper for all the make processes in userland. If you want
# to build your own programs here, just add them to the all and clean
# rules below. Make sure 'lib' stays on top.

all:
	$(MAKE) -C ../utils/bin2c
	$(MAKE) -C lib
	$(MAKE) -C test1
	$(MAKE) -C 2ndmix
	$(MAKE) -C jam
	$(MAKE) -C kosh

clean:
	$(MAKE) -C lib clean
	$(MAKE) -C test1 clean
	$(MAKE) -C 2ndmix clean
	$(MAKE) -C jam clean
	$(MAKE) -C kosh clean

