🚀 Unix & Windows recursive build

This commit is contained in:
ful1e5 2021-01-29 19:47:41 +05:30
parent 7cf892265c
commit 8f79fd8faa
2 changed files with 14 additions and 1 deletions

View file

@ -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

View file

@ -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