-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
43 lines (33 loc) · 720 Bytes
/
Makefile
File metadata and controls
43 lines (33 loc) · 720 Bytes
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
.PHONY: build
build:
go build -o ./build/pdf-designer
.PHONY: xbuild
xbuild:
./build.sh
.PHONY: save-buildin
save-buildin:
go run . save -s ./assets/template/origin -p ./local -t origin
.PHONY: save
save:
go run . save -s ./wp -p ./local -t origin-wp
.PHONY: savet
savet:
go run . save -s ./a-demo-template -p ./local -t ddosakura-template
.PHONY: pkg
pkg:
go run . pkg -s ./wp -p ./local
.PHONY: init
init:
go run . init -s ./wp -t ./local/origin-wp.pdt
.PHONY: init-buildin
init-buildin:
go run . init -s ./wp
.PHONY: work
work:
go run . work -s ./wp
.PHONY: workt
workt:
go run . work -s ./a-demo-template
.PHONY: initt
initt:
go run . init -s ./a-demo-template -t ./local/ddosakura-template.pdt