forked from luckymarmot/API-Flow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
37 lines (25 loc) · 810 Bytes
/
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
BASE=$(shell pwd)
SCRIPTS=$(BASE)/scripts
extensions_dir=$(HOME)/Library/Containers/com.luckymarmot.Paw/Data/Library/Application\ Support/com.luckymarmot.Paw/Extensions/
all: configure pack
clean:
sh "$(SCRIPTS)/clean.sh" $(BASE)
configure:
sh "$(SCRIPTS)/configure.sh" $(BASE)
runners:
sh "$(SCRIPTS)/runners.sh" $(BASE) $(TARGET)
importers:
sh "$(SCRIPTS)/importers.sh" $(BASE) $(TARGET)
generators:
sh "$(SCRIPTS)/generators.sh" $(BASE) $(TARGET)
transfer: clean importers generators
sh "$(SCRIPTS)/transfer.sh" $(BASE) $(extensions_dir) $(TARGET)
pack: clean importers generators
sh "$(SCRIPTS)/pack.sh" $(BASE) $(TARGET)
lint:
sh "$(SCRIPTS)/lint.sh" $(BASE)
test:
sh "$(SCRIPTS)/test.sh" $(BASE) $(TEST_TARGET)
validate: lint test
watch:
sh "$(SCRIPTS)/watch.sh" $(BASE) $(COMMAND)