generated from layer5io/layer5-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Makefile
34 lines (24 loc) · 937 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
make: linux darwin windows
#
# ALL SUPPORT
#
darwin: darwin-arm
nexe index.js -t darwin-x64 -o kubeopenapi-jsonschema-darwin -r "./node_modules/**/*"
linux: linux-arm
nexe index.js -t linux-x64 -o kubeopenapi-jsonschema -r "./node_modules/**/*"
windows: windows-arm
nexe index.js -t windows-x64 -o kubeopenapi-jsonschema -r "./node_modules/**/*"
alpine: alpine-arm
nexe index.js -t alpine-x64 -o kubeopenapi-jsonschema -r "./node_modules/**/*"
#
# ARM SUPPORT
#
darwin-arm:
nexe index.js -t arm64 --build -o kubeopenapi-jsonschema-darwin -r "./node_modules/**/*"
linux-arm:
nexe index.js -t arm64 --build -o kubeopenapi-jsonschema -r "./node_modules/**/*"
windows-arm:
nexe index.js -t windows-arm64 --build -o kubeopenapi-jsonschema -r "./node_modules/**/*"
alpine-arm:
nexe index.js -t alpine-arm64 --build -o kubeopenapi-jsonschema -r "./node_modules/**/*"
.PHONY: darwin darwin-arm alpine alpine-arm linux linux-arm