aboutsummaryrefslogtreecommitdiff
path: root/test/Makefile
blob: eaf6e7e1cc9cad85fa04155a15b4c242e4ff1d84 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
test:
	@$(MAKE) -C core
	@$(MAKE) -C vim
	@$(MAKE) -C vis
	@$(MAKE) -C lua

test-local: keys-local test

keys-local:
	@$(MAKE) -C util $@

clean:
	@$(MAKE) -C core clean
	@$(MAKE) -C vim clean
	@$(MAKE) -C vis clean
	@$(MAKE) -C lua clean

.PHONY: test test-local keys-local clean