aboutsummaryrefslogtreecommitdiff
path: root/test/vim/Makefile
blob: 36a4ce76114573dd754da79571bcc27077ab4eff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
test: ../../vis ../util/keys
	@./test.sh

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

../util/keys: ../util/keys.c
	@$(MAKE) -C ../util

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

.PHONY: clean test