As
coopstah13 said above, '>' is a redirection operator. It redirects the output of 'something' into 'somefile', as in:
Code:
something > somefile
In your case, 'something' is nothing, so, your command:
Just creates an empty file.
The tool 'make' is a tool that's used to build programs from source code in an ordered manner, without having the remember the whole dependency tree of the source code.
Makefile.am and Makefile.in are files related to automake. Try to run 'automake' on that directory, and a proper 'Makefile' should be generated. Or maybe you need to run the configure script previosly.
Then you can do "make" and "make install" if you want. Without '>'
PS: If you intend to install it on your home, you can tipically use
Code:
./configure --prefix=$HOME/<whatever dir>/
Then make install will install there instead of in your system root (that would require root privileges).