aboutsummaryrefslogtreecommitdiff
path: root/lua/Makefile
blob: a7afc801f6f020ce494578b8fc54b808e0da9c6f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
all: clean ../../vis test

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

clean:
	@rm -f *.out *.err *.busted

test:
	@./test.sh

%: %.in
	@./test.sh $@

.PHONY: all clean test