Skip to content

Commit

Permalink
Console: makefile packaging update
Browse files Browse the repository at this point in the history
  • Loading branch information
bbbbbr committed Jul 19, 2021
1 parent ae91835 commit 626943f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions console/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -62,18 +62,19 @@ linuxzip: linux
mkdir -p bin/linux
zip $(BIN)-linux.zip $(BIN)
mv $(BIN)-linux.zip bin
cp $(BIN) bin
cp $(BIN) bin/linux

wincrosszip: wincross
mkdir -p bin
mkdir -p bin/windows
zip $(BIN)-windows.zip $(BIN_WIN)
mv $(BIN)-windows.zip bin
cp $(BIN_WIN) bin
cp $(BIN_WIN) bin/windows

package:
${MAKE} clean
${MAKE} wincrosszip
${MAKE} clean
${MAKE} linuxzip
${MAKE} clean

0 comments on commit 626943f

Please sign in to comment.