🛠️ Rearrance "make" commands for caching remove

This commit is contained in:
ful1e5 2021-04-04 11:53:53 +05:30
parent 70159cf762
commit 6b09eef2e5
2 changed files with 23 additions and 23 deletions

View file

@ -1,6 +1,4 @@
all: setup build
.PHONY: all
.ONESHELL:
@ -23,11 +21,11 @@ clean:
setup: clean setup.py
@python3 setup.py install --user --record files.txt
build: setup build.py clean
build: setup build.py
@python3 build.py --xsizes $(X_SIZES) --win-size $(WIN_SIZE) --win-canvas-size $(WIN_CANVAS_SIZE)
build_unix: setup build.py clean
build_unix: setup build.py
@python3 build.py unix --xsizes $(X_SIZES)
build_windows: setup build.py clean
build_windows: setup build.py
@python3 build.py windows --win-size $(WIN_SIZE) --win-canvas-size $(WIN_CANVAS_SIZE)