mirror of
https://github.com/ful1e5/apple_cursor.git
synced 2025-05-30 23:15:15 -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
|
||||
|
||||
unix: clean render bitmaps
|
||||
@cd builder && make build_unix clean
|
||||
@cd builder && make build_unix
|
||||
|
||||
windows: clean render bitmaps
|
||||
@cd builder && make build_windows clean
|
||||
@cd builder && make build_windows
|
||||
|
||||
.PHONY: all
|
||||
|
||||
|
@ -24,7 +24,7 @@ render: bitmapper svg
|
|||
@cd bitmapper && $(MAKE)
|
||||
|
||||
build: bitmaps
|
||||
@cd builder && make build clean
|
||||
@cd builder && $(MAKE)
|
||||
|
||||
.ONESHELL:
|
||||
SHELL:=/bin/bash
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
all: clean setup build
|
||||
all: setup build
|
||||
|
||||
.PHONY: all
|
||||
|
||||
|
@ -20,14 +20,14 @@ clean:
|
|||
@rm -rf files.txt
|
||||
@fi
|
||||
|
||||
setup: setup.py
|
||||
setup: clean setup.py
|
||||
@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)
|
||||
|
||||
build_unix: setup build.py
|
||||
build_unix: setup build.py clean
|
||||
@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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue