mirror of
https://github.com/ful1e5/Bibata_Cursor.git
synced 2025-05-28 14:04:22 -04:00
21 lines
368 B
Makefile
21 lines
368 B
Makefile
all: install render
|
|
|
|
.PHONY: all
|
|
|
|
clean:
|
|
@find . -type f -name "yarn.lock" -exec rm -rf "{}" +;
|
|
@find . -type d -name "node_modules" -exec rm -rf "{}" +;
|
|
|
|
node_modules:
|
|
@mkdir -p $@
|
|
|
|
install: node_modules package.json
|
|
@yarn install
|
|
|
|
render_modern:
|
|
@yarn render:bibata-modern
|
|
|
|
render_original:
|
|
@yarn render:bibata-original
|
|
|
|
render: render_modern render_original
|