summary refs log tree commit diff
path: root/examples/Makefile
blob: 35e7d7470f3f332e16b5edc6a13a9c236d228242 (plain)
1
2
3
4
5
6
7
8
9
10
TESTS += fib
TESTS += gcd

all: ${TESTS}

.PHONY: ${TESTS}
${TESTS}:
	@echo "Test: $@"
	@test "`../3cl -d $@.ccl`" = "`cat $@.ccl.test`"
	@echo