aboutsummaryrefslogtreecommitdiff
path: root/test/lua/Makefile
blob: 84a1eedc656d18d919e2d5a74c860e859c534ec0 (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

test:
	@./test.sh

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

.PHONY: all clean test