mirror of
https://github.com/ful1e5/apple_cursor.git
synced 2025-05-09 13:52:00 -04:00
🙈 ignore bin directory
This commit is contained in:
parent
d50d830376
commit
5cc3a2c096
2 changed files with 19 additions and 8 deletions
10
.gitignore
vendored
10
.gitignore
vendored
|
@ -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.*
|
||||
|
|
17
Makefile
17
Makefile
|
@ -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 ..
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue