OF_ROOT in existing Makefile / config.make not set correctly in some cases.
If the Makefile or config.make is in a non-standard location (e.g. where OF_ROOT != ../../..), projectGenerator will modify an existing Makefile / config.make and replace only ../../... Thus for Makefiles that are already correct (e.g. OF_ROOT=../../../../../.. the project generator will correctly determine that OF_ROOT should be ../../../../../.., but will replace the first ../../.. with ../../../../.. resulting in ../../../../../../../.. which results in a broken Makefile / config.make.
Rather than doing a find/replace on a static OF_ROOT string, projectGenerator should replace the whole line or use a regex to replace the entire existing path with its version.
Related #119
@bakercp I think this one was recently fixed.