mirror of
https://github.com/ful1e5/apple_cursor.git
synced 2025-05-23 11:37:04 -04:00
🚀 Unix & Windows recursive build
This commit is contained in:
parent
7cf892265c
commit
8f79fd8faa
2 changed files with 14 additions and 1 deletions
7
Makefile
7
Makefile
|
@ -9,6 +9,12 @@ root_dest := $(root)/$(theme)
|
||||||
|
|
||||||
all: clean render build
|
all: clean render build
|
||||||
|
|
||||||
|
unix: clean render pngs
|
||||||
|
@cd builder && make build_unix
|
||||||
|
|
||||||
|
windows: clean render pngs
|
||||||
|
@cd builder && make build_windows
|
||||||
|
|
||||||
.PHONY: all
|
.PHONY: all
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
|
@ -23,6 +29,7 @@ build: pngs
|
||||||
.ONESHELL:
|
.ONESHELL:
|
||||||
SHELL:=/bin/bash
|
SHELL:=/bin/bash
|
||||||
|
|
||||||
|
|
||||||
install: themes/macOSBigSur
|
install: themes/macOSBigSur
|
||||||
@echo "> Installing '$(theme)' cursors..."
|
@echo "> Installing '$(theme)' cursors..."
|
||||||
@if [[ $EUID -ne 0 ]]; then
|
@if [[ $EUID -ne 0 ]]; then
|
||||||
|
|
|
@ -22,3 +22,9 @@ setup: setup.py
|
||||||
|
|
||||||
build: setup build.py
|
build: setup build.py
|
||||||
@. venv/bin/activate; python3 build.py
|
@. venv/bin/activate; python3 build.py
|
||||||
|
|
||||||
|
build_unix: setup build.py
|
||||||
|
@. venv/bin/activate; python3 build.py unix
|
||||||
|
|
||||||
|
build_windows: setup build.py
|
||||||
|
@. venv/bin/activate; python3 build.py windows
|
Loading…
Add table
Add a link
Reference in a new issue