Made makefile more robust
authorJason Axelson (dell.server) <jason.axelson@gmail.com>
Mon, 27 Apr 2009 03:08:11 +0000 (17:08 -1000)
committerJason Axelson (dell.server) <jason.axelson@gmail.com>
Mon, 27 Apr 2009 03:13:22 +0000 (17:13 -1000)
commit158043454ca86600bb96e94dd15325431edbf556
tree124701d574a0f0ef5d0d4a9f541196a1cbb4f1d1
parentfcb77d48676b0fa2fc22424b1ea61669936248e2
Made makefile more robust

By using the .PHONY directive we can avoid errors that appear when there
are already files by that name in the directory.

For example: If we put a file called clean in the directory, than make
clean would not execute because the file 'clean' is already made.
Makefile