mirror of
https://github.com/ful1e5/Bibata_Cursor.git
synced 2025-05-21 10:45:13 -04:00
distributed build
This commit is contained in:
parent
5bf4e50f36
commit
d9a28346d4
1 changed files with 12 additions and 5 deletions
17
Makefile
17
Makefile
|
@ -2,38 +2,45 @@
|
||||||
# make # build cursors
|
# make # build cursors
|
||||||
# make clean # remove ALL cursors and objects
|
# make clean # remove ALL cursors and objects
|
||||||
|
|
||||||
.DEFAULT_GOAL := build
|
.DEFAULT_GOAL := project_build
|
||||||
|
|
||||||
build:
|
|
||||||
|
|
||||||
|
project_build:
|
||||||
@echo "installing Requirements..."
|
@echo "installing Requirements..."
|
||||||
# pip3 freeze > requirements.txt
|
# pip3 freeze > requirements.txt
|
||||||
pip3 install -r requirements.txt
|
pip3 install -r requirements.txt
|
||||||
|
|
||||||
|
.PHONY := Bibata_Classic
|
||||||
|
Bibata_Classic:
|
||||||
|
|
||||||
@echo "Building Bibata Classic..."
|
@echo "Building Bibata Classic..."
|
||||||
python3 render-cursors.py ./src/Bibata_Classic/source-cursors.svg -o -a --name Bibata_Classic
|
python3 render-cursors.py ./src/Bibata_Classic/source-cursors.svg -o -a --name Bibata_Classic
|
||||||
sh x11-make.sh Bibata_Classic
|
sh x11-make.sh Bibata_Classic
|
||||||
cp src/Bibata_Classic/*.theme Bibata_Classic/out/X11/Bibata_Classic
|
cp src/Bibata_Classic/*.theme Bibata_Classic/out/X11/Bibata_Classic
|
||||||
sh w32-make.sh Bibata_Classic
|
sh w32-make.sh Bibata_Classic
|
||||||
|
|
||||||
@echo "Building Bibata Oil..."
|
.PHONY := Bibata_Oil
|
||||||
|
Bibata_Oil:
|
||||||
|
@echo "Building Bibata Oil..."
|
||||||
python3 render-cursors.py ./src/Bibata_Oil/source-cursors.svg -o -a --name Bibata_Oil
|
python3 render-cursors.py ./src/Bibata_Oil/source-cursors.svg -o -a --name Bibata_Oil
|
||||||
sh x11-make.sh Bibata_Oil
|
sh x11-make.sh Bibata_Oil
|
||||||
cp src/Bibata_Oil/*.theme Bibata_Oil/out/X11/Bibata_Oil
|
cp src/Bibata_Oil/*.theme Bibata_Oil/out/X11/Bibata_Oil
|
||||||
sh w32-make.sh Bibata_Oil
|
sh w32-make.sh Bibata_Oil
|
||||||
|
|
||||||
|
.PHONY := Bibata_Ice
|
||||||
|
Bibata_Ice:
|
||||||
@echo "Building Bibata Ice..."
|
@echo "Building Bibata Ice..."
|
||||||
python3 render-cursors.py ./src/Bibata_Ice/source-cursors.svg -o -a --name Bibata_Ice
|
python3 render-cursors.py ./src/Bibata_Ice/source-cursors.svg -o -a --name Bibata_Ice
|
||||||
sh x11-make.sh Bibata_Ice
|
sh x11-make.sh Bibata_Ice
|
||||||
cp src/Bibata_Ice/*.theme Bibata_Ice/out/X11/Bibata_Ice
|
cp src/Bibata_Ice/*.theme Bibata_Ice/out/X11/Bibata_Ice
|
||||||
sh w32-make.sh Bibata_Ice
|
sh w32-make.sh Bibata_Ice
|
||||||
|
|
||||||
|
.PHONY := Bibata_Amber
|
||||||
|
Bibata_Amber:
|
||||||
@echo "Building Bibata Amber..."
|
@echo "Building Bibata Amber..."
|
||||||
python3 render-cursors.py ./src/Bibata_Amber/source-cursors.svg -o -a --name Bibata_Amber
|
python3 render-cursors.py ./src/Bibata_Amber/source-cursors.svg -o -a --name Bibata_Amber
|
||||||
sh x11-make.sh Bibata_Amber
|
sh x11-make.sh Bibata_Amber
|
||||||
cp src/Bibata_Amber/*.theme Bibata_Amber/out/X11/Bibata_Amber
|
cp src/Bibata_Amber/*.theme Bibata_Amber/out/X11/Bibata_Amber
|
||||||
sh w32-make.sh Bibata_Amber
|
sh w32-make.sh Bibata_Amber
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
@echo "Cleaning Up..."
|
@echo "Cleaning Up..."
|
||||||
rm -rf ./Bibata_*
|
rm -rf ./Bibata_*
|
Loading…
Add table
Add a link
Reference in a new issue