🙈 ignore bin directory

This commit is contained in:
ful1e5 2021-08-13 14:42:34 +05:30
parent d50d830376
commit 5cc3a2c096
2 changed files with 19 additions and 8 deletions

10
.gitignore vendored
View file

@ -1,9 +1,9 @@
########## Custom
# --------------------------------------------- Custom
bitmaps
themes
builder/files.txt
bin
########## Python
# --------------------------------------------- Python
# Byte-compiled / optimized / DLL files
__pycache__/
@ -136,7 +136,7 @@ dmypy.json
.pyre/
######### Node
# --------------------------------------------- Nodejs
# Logs
logs
@ -253,4 +253,4 @@ dist
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*
.pnp.*

View file

@ -8,14 +8,14 @@ render: bitmapper svg
@cd bitmapper && $(MAKE)
build: bitmaps
@cd builder && make build && make clean
@cd builder && make build
unix: clean render bitmaps
@cd builder && make build_unix && make clean
@cd builder && make build_unix
windows: clean render bitmaps
@cd builder && make build_windows && make clean
@cd builder && make build_windows
# Installation
@ -52,3 +52,14 @@ uninstall:
@fi
reinstall: uninstall install
BIN_DIR = ../bin
prepare: bitmaps themes
# Bitmaps
@rm -rf bin && mkdir bin
@cd bitmaps && zip -r $(BIN_DIR)/bitmaps.zip * && cd ..
# Themes
@cd themes
@tar -czvf $(BIN_DIR)/macOSBigSur.tar.gz macOSBigSur
@zip -r $(BIN_DIR)/macOSBigSur_Windows.zip macOSBigSur_Windows
@cd ..