codebrainz commented on this pull request.
+so if you've change the source code, take heed of the warning/error
+messages reported here. + +If you have multiple CPUs/cores you can pass the `-j` option to `make` +to have it spin up the specified number of concurrent processes where +possible to complete the compilation and linking stages in less time. +Geany's build system is incremental, so after you hack on the code and +want to rebuild, you can run `make` again and only the needed files +will be built, which makes it much faster than the initial build. + +Once Geany is built, we want to install it into the provided `--prefix` +to test it, like this:: + + $ make install + +In fact, the `make install` rule will necessary run the complete build,
*necessarily