Add .PHONY targets to top Makefile for non-file targets
authorDan Nicholson <dbn.lists@gmail.com>
Tue, 6 May 2008 18:52:34 +0000 (11:52 -0700)
committerDan Nicholson <dbn.lists@gmail.com>
Tue, 6 May 2008 18:52:34 +0000 (11:52 -0700)
commit50f7e6fb5f0754093e11b781b916034001d44a09
treef22faff7b992d40e370e95a677531bf5529529d2
parente14ebbce41c8acee5f77633c6c536d92f84a5c20
Add .PHONY targets to top Makefile for non-file targets

When a make target doesn't result in a file of the same name, adding it
to a .PHONY target means make won't look for such a file, speeding the
build up a bit. This allows `make doxygen' to work since otherwise make
will consider the doxygen directory as up to date.
Makefile