What should all this do? If you just want it to build calcu, all you have to do is type make, and it will do it along with everything it depends on, because this is the first rule in the file.
If you still want to create a rule all, you can do this as follows. I recommend putting this above all other rules, so you can just type makeinstead make all.
all: calcu
source
share