Hacker News new | ask | show | jobs
by owen11 2536 days ago
How to compile it on Ubuntu? I am getting 'make: * No targets specified and no makefile found. Stop.' when I run 'make' and there is no configure file.

Also, I can't figure out a way to sign up to https://git.meli.delivery so I can create an 'issue.

1 comments

The cargo.toml file gives it away as a Rust project, so install Rust then

> cargo build

to just compile, or

> cargo run

to compile & run

> cargo build --release

Otherwise you'd be compiling it in debug mode (which is really slow for most projects).