# Change it here or specify it on the "make" commandline
#

# cc -DLINELENGTH=80 prog.c -o prog
# cc -DDEBUG should work also

# script starts here
all:pa_api dynamo

clean:
	(cd middleware; make clean)
	(cd paapi/user-level; make clean)

pa_api:
	(cd paapi/user-level; make all)

kernel:
	(cd paapi/linux-ipaq-v0.6.1/kernel; make depend; make zImage)
dynamo:
	(cd middleware; make all)

