14 lines
171 B
Makefile
14 lines
171 B
Makefile
|
PAR := $(MAKE) -j 128
|
||
|
|
||
|
watch:
|
||
|
${PAR} deno-w sass-w
|
||
|
|
||
|
deno-w:
|
||
|
deno run -A --watch server.ts
|
||
|
|
||
|
sass-w:
|
||
|
sass -w styles/main.scss public/styles/main.css
|
||
|
|
||
|
help:
|
||
|
cat makefile
|