mirror of
https://github.com/ful1e5/apple_cursor.git
synced 2025-05-21 10:45:23 -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
|
||||
|
||||
unix: clean render pngs
|
||||
@cd builder && make build_unix
|
||||
|
||||
windows: clean render pngs
|
||||
@cd builder && make build_windows
|
||||
|
||||
.PHONY: all
|
||||
|
||||
clean:
|
||||
|
@ -23,6 +29,7 @@ build: pngs
|
|||
.ONESHELL:
|
||||
SHELL:=/bin/bash
|
||||
|
||||
|
||||
install: themes/macOSBigSur
|
||||
@echo "> Installing '$(theme)' cursors..."
|
||||
@if [[ $EUID -ne 0 ]]; then
|
||||
|
|
|
@ -21,4 +21,10 @@ setup: setup.py
|
|||
@. venv/bin/activate; python3 setup.py install --record files.txt
|
||||
|
||||
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