Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
1.11 | 2018-06-13 | ||
1.10 | 2017-03-28 | ||
1.9 | 2015-11-07 | ||
1.8 | 2014-01-16 | ||
1.7 | 2013-07-12 | ||
1.6 | 2013-05-07 | ||
1.5 | 2009-05-29 | ||
1.4 | 2008-06-21 | ||
1.3 | 2008-03-01 | ||
1.2 | 2007-11-02 | ||
1.1 | 2006-12-13 | ||
README.txt | 2017-03-28 | 1.1 kB | |
Totals: 12 Items | 1.1 kB | 0 |
The makefiles project is a set of universal makefiles for building any project with Gnu tools (gcc, Gnu make etc.). The idea is that you write a trivial Makefile which simply includes a universal makefile and it does the rest for you. This makes it very easy to set up new projects and to ensure consistency of builds in a multi-library project. These rules do the following tasks: - compile all the .cpp or .c files in the current directory - archive the object files together into a static object library - build all other projects on which the current project depends - link an image or shared library - (optionally) compile and build a wxWidgets application Note: These files are designed for ***Gnu make ONLY***. A make file contains a set of rules. The scope for writing rules is limited by the makefile syntax. Therefore it has been necessary to restrict the flexibility of the universal makefile in order for it to be possible to write it at all. See the included documentation for how to use it and what the restrictions are. See http://stlplus.sourceforge.net/makefiles/docs/