###############################################################################
#
# Makefile for CIS*4750 Course Project
#
# Author: Daniel F. Dickinson <danielfdickinson@yahoo.ca>
#
# 'make all' compiles the Java class files, creates the bin dir, and populates
#     it with commands.
# 'make bin' creates the bin dir and populates it with commands, 
# 'make docs' generates the project report and manual from the DockBook sources
# 'make clean' removes all temporary files, binary files, and the 
#     project report
#
###############################################################################

all : 
	cd src && $(MAKE) all

.PHONY : bin
.PHONY : docs

bin : 
	cd src && $(MAKE) bin

docs : 
	(cd docs; $(MAKE) all)

clean :
	cd src && $(MAKE) clean
