MAKE=make
RM=rm -f

.PHONY: all  console  emulator  player  clean

all: console  emulator  player

console:
	${MAKE} -C src console

emulator:
	${MAKE} -C src emulator

player:
	${MAKE} -C src player

clean:
	${MAKE} -C src clean
	${RM} *.bak *~ core

