aboutsummaryrefslogtreecommitdiff
path: root/test/sam/Makefile
blob: 3a915824b2ca9bfc4ad0dc1b41e2aa46d198ee3b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
test: ../../vis
	@./test.sh

../../vis: ../../*.[ch]
	@echo Compiling vis
	@$(MAKE) -C ../..

clean:
	@echo cleaning
	@find . -name '*.out' -o -name '*.err' | xargs rm -f

.PHONY: clean test