mirror of
https://github.com/ful1e5/apple_cursor.git
synced 2025-05-14 07:04:47 -04:00
18 lines
No EOL
198 B
Makefile
18 lines
No EOL
198 B
Makefile
all: install render
|
|
|
|
.PHONY: all
|
|
|
|
install: node_modules package.json
|
|
@yarn install
|
|
|
|
render:
|
|
@yarn render
|
|
|
|
watch:
|
|
@yarn watch
|
|
|
|
node_modules:
|
|
@mkdir -p $@
|
|
|
|
clean:
|
|
@rm -rf node_modules yarn.lock
|