#
# Simple-minded makefile.  For reasons related to the pedagogical
# application that this code springs from, both:
#
#	make simple
#
# and:
#
#	make perturbed
#
# produce a binary named "pendulum".
#

simple:	pendulum
	mcc -o pendulum simple.c simple.tm

perturbed:
	mcc -o pendulum perturbed.c perturbed.tm
