Hello! I always hate my first post joining a forum to be a question--but I see no other option, as Google is no help in sorting this out for me, despite my best efforts. I am running Linux 13.04, I believe, Raring Ringtail, and am attempting to compile Warzone 2100 for some good RTS action

Since the first keystroke I've encountered problems. First, when I tried to run
- Code: Select all
./autogen.sh && ./configure && make
It said "permission denied", even though I am, essentially what amounts to on Windows an administrator (sorry for my vocabulary, I am a recent Linux convert). So, I tried to run the same command via "sudo" and then got a "Command not found" error. After some hairpulling, I discovered this:
- Code: Select all
chmod a+x autogen.sh
Which I have no idea what that actually does

but they said it would solve my autogen.sh problems, and it did. Or, at least, I thought it did. When I got to the end of the "make" command, I tried running
- Code: Select all
./src/warzone2100
And it replied: "No such file or directory". So--what did I screw up? There is a MOUNTAIN of output from the terminal when I run the autogen, configure, and make commands, so I don't want to just dump that in here and have you sift through it unnecessarily, unless you think that's the best solution. If there's something that we can narrow down, and I can provide that would be helpful, I'm more than willing to provide it.

Thanks in advance for all your help.
Oh! Here's something that may be helpful (I hope). At the end of the output, when running the "Make" command, I get this:
- Code: Select all
Making all in src
make[2]: Entering directory `/home/tyler/Downloads/Warzone 2100/warzone2100-3.1.0/src'
cd .. && ./build_tools/autorevision -t h -o /home/tyler/Downloads/Warzone 2100/warzone2100-3.1.0/src/autorevision.cache > /home/tyler/Downloads/Warzone 2100/warzone2100-3.1.0/src/autorevision.h.new
/bin/bash: ./build_tools/autorevision: Permission denied
make[2]: *** [autorevision.h] Error 126
make[2]: Leaving directory `/home/tyler/Downloads/Warzone 2100/warzone2100-3.1.0/src'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/tyler/Downloads/Warzone 2100/warzone2100-3.1.0'
make: *** [all] Error 2
So it's not liking something I'm doing--and, apparently, I don't have permission to get into the autorevision folder, despite the fact that I ran that command under sudo after it failed once the first time...so, anybody have any ideas what's going on? Thanks in advance.