I have following files-
maze: maze.c
gcc -o maze createMaze.c findcheese_iter.c maze.c -I.
Even after making changes to createMaze.c
when I try running make
command in the terminal,it says make: 'maze' is up to date.
As a result I am not getting the correct answer.When I run the same code by this way it runs-
gcc createMaze.c maze.c findcheese_iter.c -o exe