mirror of
https://github.com/ful1e5/apple_cursor.git
synced 2025-05-12 22:26:11 -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
|
bitmaps
|
||||||
themes
|
themes
|
||||||
builder/files.txt
|
bin
|
||||||
|
|
||||||
########## Python
|
# --------------------------------------------- Python
|
||||||
|
|
||||||
# Byte-compiled / optimized / DLL files
|
# Byte-compiled / optimized / DLL files
|
||||||
__pycache__/
|
__pycache__/
|
||||||
|
@ -136,7 +136,7 @@ dmypy.json
|
||||||
.pyre/
|
.pyre/
|
||||||
|
|
||||||
|
|
||||||
######### Node
|
# --------------------------------------------- Nodejs
|
||||||
|
|
||||||
# Logs
|
# Logs
|
||||||
logs
|
logs
|
||||||
|
@ -253,4 +253,4 @@ dist
|
||||||
.yarn/unplugged
|
.yarn/unplugged
|
||||||
.yarn/build-state.yml
|
.yarn/build-state.yml
|
||||||
.yarn/install-state.gz
|
.yarn/install-state.gz
|
||||||
.pnp.*
|
.pnp.*
|
||||||
|
|
17
Makefile
17
Makefile
|
@ -8,14 +8,14 @@ render: bitmapper svg
|
||||||
@cd bitmapper && $(MAKE)
|
@cd bitmapper && $(MAKE)
|
||||||
|
|
||||||
build: bitmaps
|
build: bitmaps
|
||||||
@cd builder && make build && make clean
|
@cd builder && make build
|
||||||
|
|
||||||
|
|
||||||
unix: clean render bitmaps
|
unix: clean render bitmaps
|
||||||
@cd builder && make build_unix && make clean
|
@cd builder && make build_unix
|
||||||
|
|
||||||
windows: clean render bitmaps
|
windows: clean render bitmaps
|
||||||
@cd builder && make build_windows && make clean
|
@cd builder && make build_windows
|
||||||
|
|
||||||
|
|
||||||
# Installation
|
# Installation
|
||||||
|
@ -52,3 +52,14 @@ uninstall:
|
||||||
@fi
|
@fi
|
||||||
|
|
||||||
reinstall: uninstall install
|
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