# Makefile for the mcpl implementation of VSPL

help:
	@echo
	@echo "make primes         Compile and run primes.vs"
	@echo "make clean          Delete unneeded files"
	@echo

primes:	vspl
	mintsys -c vspl -p -c ../primes.vs

vspl:	vspl.m
	cintsys -c c mp vspl

clean:
	rm -f *~ vspl junk* core MCODE
