mirror of
https://github.com/ful1e5/Bibata_Cursor.git
synced 2025-05-24 20:14:29 -04:00
13 lines
No EOL
211 B
Makefile
13 lines
No EOL
211 B
Makefile
# Usage:
|
|
# make # build cursors
|
|
# make clean # remove ALL cursors and objects
|
|
|
|
.DEFAULT_GOAL := build
|
|
|
|
build:
|
|
@echo "Building Bibata..."
|
|
sh ./build.sh
|
|
|
|
clean:
|
|
@echo "Cleaning Up..."
|
|
rm -rf ./Bibata_*
|