Lines Matching full:build
1 The STLport build system
4 This is a basic overview of the STLport build system. At the moment, I'm only familiar
21 The whole build system lies under the build/ dir of the source tree. There, it first
22 branches to Makefiles/ (which contains the base of the build system) and to lib/ (which
23 contains files to build the STLport library) and test/ (which contains files to build
26 Under Makefiles/, you see the initially mentioned branching according to the build tool.
44 build/lib folder. From there, the following include tree is created:
46 build/lib/evc.mak
47 build/Makefiles/config.mak ; generated by configure.bat
48 build/Makefiles/nmake/top.mak
49 build/Makefiles/config.mak
50 build/Makefiles/nmake/sysid.mak
51 build/Makefiles/nmake/sys.mak
52 build/Makefiles/nmake/evc4.mak ; evc4 from config
53 build/Makefiles/nmake/evc-common.mak
54 build/Makefiles/nmake/targetdirs.mak
55 build/Makefiles/nmake/extern.mak
56 build/Makefiles/nmake/targets.mak
57 build/Makefiles/nmake/rules-o.mak
58 build/Makefiles/nmake/clean.mak
59 build/Makefiles/nmake/lib/top.mak ; would be app/top.mak when building an application
60 build/Makefiles/nmake/lib/macro.mak
61 build/Makefiles/nmake/lib/evc4.mak ; evc4 from config
62 build/Makefiles/nmake/lib/evc-common.mak
63 build/Makefiles/nmake/lib/rules-so.mak
64 build/Makefiles/nmake/lib/rules-a.mak
65 build/Makefiles/nmake/lib/rules-install-so.mak
66 build/Makefiles/nmake/lib/rules-install-a.mak
67 build/Makefiles/nmake/lib/clean.mak
69 TODO: build/Makefiles/config.mak is included both by build/lib/evc.mak and by
70 build/Makefiles/nmake/top.mak.