mirror of
https://github.com/ful1e5/apple_cursor.git
synced 2025-05-16 08:04:49 -04:00
enahnce: New commands added inside Makefile
for bitmapper
This commit is contained in:
parent
eca8cb5760
commit
89372b87ab
2 changed files with 19 additions and 5 deletions
|
@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
- `Makefile` binaries targets with variable
|
||||
- pling docs: size and support info updated
|
||||
- `bigsur` cursor bitmapper as node package
|
||||
- New commands added inside `Makefile` for `bitmapper`
|
||||
|
||||
### Changed
|
||||
|
||||
|
|
23
Makefile
23
Makefile
|
@ -1,20 +1,33 @@
|
|||
all: clean render build
|
||||
|
||||
.PHONY: all
|
||||
|
||||
# Default
|
||||
clean:
|
||||
@rm -rf bitmaps themes
|
||||
|
||||
|
||||
render: bitmapper svg
|
||||
@cd bitmapper && $(MAKE)
|
||||
@cd bitmapper && make install render_bigsur
|
||||
|
||||
build: bitmaps
|
||||
@cd builder && make build
|
||||
@cd builder && make setup build
|
||||
|
||||
|
||||
# Specific platform build
|
||||
unix: clean render bitmaps
|
||||
@cd builder && make build_unix
|
||||
@cd builder && make setup build_unix
|
||||
|
||||
windows: clean render bitmaps
|
||||
@cd builder && make build_windows
|
||||
@cd builder && make setup build_windows
|
||||
|
||||
# macOS Big Sur
|
||||
bigsur: clean render_bigsur build_bigsur
|
||||
|
||||
render_bigsur: bitmapper svg
|
||||
@cd bitmapper && make install render_bigsur
|
||||
|
||||
build_bigsur: bitmaps
|
||||
@cd builder && make setup build_bigsur
|
||||
|
||||
|
||||
# Installation
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue