14 lines
190 B
Makefile
14 lines
190 B
Makefile
PAR := $(MAKE) -j 128
|
|
|
|
|
|
watch:
|
|
$(PAR) hr ts-w
|
|
|
|
hr:
|
|
deno run -A ~/sandbox/hr/server.ts target static
|
|
|
|
ts-w:
|
|
npx tsc-watch --onSuccess "node target/scripts/main.mjs"
|
|
|
|
clean:
|
|
rm -rf target
|