Makefile 238 B

1234567891011121314
  1. ipplot:
  2. go build -o ../../bin -C cmd/ipplot #-tags profiling
  3. wasm:
  4. cd cmd/ipplot && gogio -target js -o ../../wasm .
  5. serve:
  6. go build -o ../../bin -C cmd/serve
  7. clean:
  8. rm bin/ipplot || true
  9. rm -r wasm || true
  10. rm bin/serve || true