Building a Project on Unix

Some things are just easier in Unix - so here is a note on how to compile a typical source code project on Unix:

unzip the source:

tar xzf myTarFile.gz

cd myUnzippedDir

./configure --prefix={path}

for example:

/home/sean/googleBuffers

make

make install

Comments