Skip to content

Commit

Permalink
Use find instead of bin/find in makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
yuxiaomao committed May 28, 2024
1 parent 2f81ec0 commit f970fe2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ deps:
cd hldebug-wrapper && npm install && rm -rf build node_modules
npm install
cleanup:
/bin/find . -name *.obj | xargs rm -f
/bin/find . -name *.pdb | xargs rm -f
/bin/find . -name *.tlog | xargs rm -rf
/bin/find . -name *.map | xargs rm -rf
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 -lib format -lib hscript -D js-es=6 -js extension.js Extension
package: cleanup build
Expand Down

0 comments on commit f970fe2

Please sign in to comment.