I have made a makefile for some c files. I have seen too many ways on the internet but i had always the same problem: Running make, I am told:
make: `q_a' is up to date.
My Makefile
contains:
q_a:
gcc -o q_a quick_sort_i.c
q_g:
gcc -o q_g quick_sort_g.c
s_a:
gcc -o s_a shell_sort_i.c
s_g:
gcc -o s_g shell_sort_g.c
fork:
gcc -o fork fork.c
I don't have files with the same name as the target in my folder, and I can perform the compilation commands successfully them when I enter them manually in a terminal.