#
#	Makefile for the Clean examples programs
#

#
#		make:
#			compile the data base demo
#
#		make cleanup:
#			remove all files that can be recreated
#


MAIN_MODULE = database

all: $(MAIN_MODULE)

#
# Cleanup
#

cleanup:
	$(RM) $(MAIN_MODULE) \
	$(RM) *.abc \
	$(RM) *.o

#
# Commands
#	

CLM = clm
CLMFLAGS = -sl x -nw

.SUFFIXES: .icl

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