-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile
72 lines (55 loc) · 1.15 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
MOOR = moor
LOCAL ?=
SPEC_DIR = spec
BIN_DIR = bin
PATCH = patch.sh
BUSTED = busted
CD = cd
CP = cp
ECHO = echo
LS = ls
LUAROCKS = luarocks
MAKE = make
MKDIR = mkdir
MOONC = moonc
RM = rm
SED = sed
WC = wc
ROCKSPEC = $(shell $(LS) moor-*.rockspec)
LUAROCKS_TMP =/tmp/luarocks-test
.PHONY: continue test install local lint compile spec-patch test-list clean lines
compile:
#) '---$@---'
$(MOONC) $(MOOR)/*.moon $(BIN_DIR)/$(MOOR).moon
continue:
#) '---$@---'
$(MOONC) -w $(MOOR)/*.moon $(BIN_DIR)/$(MOOR).moon
install:
#) '---$@---'
#) WARN: This is not install phase but just alias to 'lint'
$(MAKE) rocklint
rockmake:
#) '---$@---'
$(LUAROCKS) $(LOCAL) make $(ROCKSPEC)
test: compile spec-patch
#) '---$@---'
for f in $(SPEC_DIR)/*.moon; do $(BUSTED) --verbose --keep-going $$f; done
$(LUAROCKS) make $(ROCKSPEC) --tree=$(LUAROCKS_TMP)
local:
#) '---$@---'
$(MAKE) rockmake LOCAL=--local
rocklint:
#) '---$@---'
$(LUAROCKS) lint $(ROCKSPEC)
spec-patch:
#) '---$@---'
./$(SPEC_DIR)/$(PATCH)
test-list:
#) '---$@---'
@$(BUSTED) --list
clean:
#) '---$@---'
-$(RM) $(MOOR)/*.lua $(BIN_DIR)/$(MOOR).lua
lines:
#) '---$@---'
$(WC) -l */*.moon