mirror of
https://github.com/ful1e5/apple_cursor.git
synced 2025-06-01 07:48:20 -04:00
✅ Zero cache on build
This commit is contained in:
parent
29ab657136
commit
198815c2c4
2 changed files with 8 additions and 8 deletions
6
Makefile
6
Makefile
|
@ -10,10 +10,10 @@ root_dest := $(root)/$(theme)
|
||||||
all: clean render build
|
all: clean render build
|
||||||
|
|
||||||
unix: clean render bitmaps
|
unix: clean render bitmaps
|
||||||
@cd builder && make build_unix clean
|
@cd builder && make build_unix
|
||||||
|
|
||||||
windows: clean render bitmaps
|
windows: clean render bitmaps
|
||||||
@cd builder && make build_windows clean
|
@cd builder && make build_windows
|
||||||
|
|
||||||
.PHONY: all
|
.PHONY: all
|
||||||
|
|
||||||
|
@ -24,7 +24,7 @@ render: bitmapper svg
|
||||||
@cd bitmapper && $(MAKE)
|
@cd bitmapper && $(MAKE)
|
||||||
|
|
||||||
build: bitmaps
|
build: bitmaps
|
||||||
@cd builder && make build clean
|
@cd builder && $(MAKE)
|
||||||
|
|
||||||
.ONESHELL:
|
.ONESHELL:
|
||||||
SHELL:=/bin/bash
|
SHELL:=/bin/bash
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
|
|
||||||
all: clean setup build
|
all: setup build
|
||||||
|
|
||||||
.PHONY: all
|
.PHONY: all
|
||||||
|
|
||||||
|
@ -20,14 +20,14 @@ clean:
|
||||||
@rm -rf files.txt
|
@rm -rf files.txt
|
||||||
@fi
|
@fi
|
||||||
|
|
||||||
setup: setup.py
|
setup: clean setup.py
|
||||||
@python3 setup.py install --user --record files.txt
|
@python3 setup.py install --user --record files.txt
|
||||||
|
|
||||||
build: setup build.py
|
build: setup build.py clean
|
||||||
@python3 build.py --xsizes $(X_SIZES) --win-size $(WIN_SIZE) --win-canvas-size $(WIN_CANVAS_SIZE)
|
@python3 build.py --xsizes $(X_SIZES) --win-size $(WIN_SIZE) --win-canvas-size $(WIN_CANVAS_SIZE)
|
||||||
|
|
||||||
build_unix: setup build.py
|
build_unix: setup build.py clean
|
||||||
@python3 build.py unix --xsizes $(X_SIZES)
|
@python3 build.py unix --xsizes $(X_SIZES)
|
||||||
|
|
||||||
build_windows: setup build.py
|
build_windows: setup build.py clean
|
||||||
@python3 build.py windows --win-size $(WIN_SIZE) --win-canvas-size $(WIN_CANVAS_SIZE)
|
@python3 build.py windows --win-size $(WIN_SIZE) --win-canvas-size $(WIN_CANVAS_SIZE)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue