mirror of
https://github.com/ful1e5/apple_cursor.git
synced 2025-05-25 20:44:55 -04:00
18 lines
No EOL
193 B
Makefile
18 lines
No EOL
193 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
|