Suru
I’ve made a build tool to replace make. It’s intended to be very similar to make, but with modern features that make lacks. Check it out on crates.io! Basic usage Make a file called tasks.su. Write the following in your taskfile. a.out: main.o % < *.o g++ $^ -o $@ Make sure the indentation is made with a hard tab. The syntax is very similar to Make, but unlike Make, pattern rules are separated from normal build rules....