forked from Vonng/adcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
makefile
46 lines (45 loc) · 761 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
38
39
40
41
42
43
44
45
46
setup:
bin/adcode setup
bin/fences setup
createdb:
psql postgres -c 'CREATE DATABASE adcode;'
create:
bin/adcode create
bin/fences create
index:
bin/adcode index
bin/fences index
order:
bin/adcode order
bin/fences order
drop:
bin/adcode drop
bin/fences drop
trunc:
bin/adcode trunc
bin/fences trunc
clean:
bin/adcode clean
bin/fences clean
dump:
bin/adcode dump
bin/fences dump
load:
bin/adcode load
bin/fences load
backup:
bin/adcode backup
bin/fences backup
restore:
bin/adcode restore
bin/fences restore
check:
bin/adcode check
bin/fences check
reload:
bin/adcode reload
bin/fences reload
reset:
bin/adcode reset
bin/fences reset
.PHONY: setup,createdb,create,index,order,trunc,clean,dump,load,backup,restore,check,reload,reset