

These include handling development on multiple versions of a project, supporting several platforms, providing efficient access to source and binaries, and performing automated builds. Once a project gets beyond building its components, it eventually finds that there are larger organizational issues in managing builds. An alternative suggested by Peter Miller in 1998 avoids many issues with recursive make by using a single makefile that includes information from each component directory. Recursive make is a common technique for handling componentwise builds. This approach is called recursive make because the top-level makefile invokes make recursively on each component’s makefile. One way to build an entire system of components employs a top-level makefile that invokes the makefile for each component in the proper order. These components are often stored under their own directories and managed by their own makefiles.

#Makefile for java project software#
Large software projects are usually simplified by dividing them into major components, often collected into distinct programs, libraries, or both. So most large software systems wind up looking very similar after awhile. And if it is successful, someone will eventually ask for it on another platform. But software rarely stays prerelease forever. A million lines of prerelease C++ on a single platform is still large. Of course, not all of these are required to call a project large. What do you call a large project? For our purposes, it is one that requires a team of developers, may run on multiple architectures, and may have several field releases that require maintenance.
