I'm having trouble with my hand-made makefile. There is 1 file that is not being created (the last one)
It seems to be something about the dependencies of the files (maybe how I'm declaring them)
So there are 6 sources but only 5 are compiled (always the last one declared)
There are three directories $ mkdir header obj src
All the files are empty $ touch header/{a..e}.h src/{a..f}.cpp
By the way, I used tabs, just don't know how to copy them
Dunno about your error. Aparently the pattern expansion is not working
Some lines weren't empty but had tabs characters. There were spaces at the end of some lines, too.
After remove that, it seems to work. ¿Is this thing so sensitive?