Skip to content

Commit

Permalink
Build: Add readme and changelog to zip file
Browse files Browse the repository at this point in the history
  • Loading branch information
bbbbbr committed Nov 18, 2023
1 parent bdebed2 commit 61864c2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -48,20 +48,20 @@ wincross: $(OBJS)
macoszip: macos
mkdir -p bin
# -j discards (junks) path to file
zip -j $(BIN)_macos.zip $(BIN)
zip -j $(BIN)_macos.zip $(BIN) Changelog.md README.md
mv $(BIN)_macos.zip bin


linuxzip: linux
mkdir -p bin
# -j discards (junks) path to file
zip -j $(BIN)_linux.zip $(BIN)
zip -j $(BIN)_linux.zip $(BIN) Changelog.md README.md
mv $(BIN)_linux.zip bin

wincrosszip: wincross
mkdir -p bin
# -j discards (junks) path to file
zip -j $(BIN)_windows.zip $(BIN_WIN)
zip -j $(BIN)_windows.zip $(BIN_WIN) Changelog.md README.md
mv $(BIN)_windows.zip bin


Expand Down

0 comments on commit 61864c2

Please sign in to comment.