forked from vshaxe/hashlink-debugger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
24 lines (22 loc) · 644 Bytes
/
Makefile
File metadata and controls
24 lines (22 loc) · 644 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
all:
deps:
cd hldebug-wrapper && npm install && rm -rf build node_modules
npm install
cleanup:
find . -name *.obj | xargs rm -f
find . -name *.pdb | xargs rm -f
find . -name *.tlog | xargs rm -rf
find . -name *.map | xargs rm -rf
build:
haxe -cp src -lib vscode -lib vshaxe -lib vscode-debugadapter -D js-es=6 -js extension.js Extension
haxe build.hxml
package: cleanup build
#npm install vsce -g
vsce package
# to get token :
# - visit https://dev.azure.com/ncannasse/
# - login (@hotmail)
# - click user / security / Personal Access token
# - select Organization:All + Full Access
publish:
vsce publish -p `cat vsce_token.txt`