#
#	Makefile for the Clean examples programs
#

#
#		make:
#			compile the Game of Life demo
#
#		make cleanup:
#			remove all files that can be recreated
#


MAIN_MODULE = LifeGameExample

all : $(MAIN_MODULE)

#
# Cleanup
#

cleanup:
	$(RM) $(MAIN_MODULE)
	$(RM) Clean\ System\ Files/*.abc
	$(RM) Clean\ System\ Files/*.o

#
# Commands
#	

CLM = clm
CLMFLAGS = -sl x -nw -I ../IOUtilities

.SUFFIXES: .icl

.icl:
	$(CLM) $(CLMFLAGS) $* -o $*
