ActivityWatch/aw-server-rust

No rule to make target 'build'

guettli opened this issue · 1 comments

I follow the instructions in README:

❯ LANG=C make build
cargo build --release --bin aw-server
    Finished release [optimized] target(s) in 0.09s
warning: the following packages contain code that will be rejected by a future version of Rust: buf_redux v0.8.4, multipart v0.18.0
note: to see what the problems were, use the option `--future-incompat-report`, or run `cargo report future-incompatibilities --id 1`
make -C ./aw-webui build
make[1]: Entering directory '/home/guettli/projects/aw-server-rust/aw-webui'
make[1]: *** No rule to make target 'build'.  Stop.
make[1]: Leaving directory '/home/guettli/projects/aw-server-rust/aw-webui'
make: *** [Makefile:30: aw-webui] Error 2

What am I doing wrong?

OS: Ubuntu 22.04

The aw-webui folder is a submodule, so you need to run "git submodule update --init --recursive".

We should probably update the readme with that.