I'm trying to make a C++ program that will find the shortest route out of the a maze. I'm struggling to get my makefile to work right now though. Currently, my makefile contains the following:
mazeIO : mazeIO.cpp maze.h
g++ -g -Wall mazeIO.cpp maze.h -o mazeIO
mazeIO.cpp and maze.h are the only two files I have in the project. In the command line I am typing
make -f Makefile
and it compiles fine. Then I am typing
./mazeIO maze.txt
maze.txt is the maze input that I am trying to navigate. After I type this in I get the following error:
bash: ./mazeIO: Permission denied
I do not understand why. Any suggestions?
ls -l mazeIOshow? – John Kugelman Nov 28 '12 at 2:29maze.hin the compilation line. It looks likeg++must ignore it; you're lucky. – Jonathan Leffler Nov 28 '12 at 2:29chmod 700 mazeIOfor first aid. What doesumaskprint? – Amadan Nov 28 '12 at 2:33