mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
536d657d91
--HG-- rename : python/mozbuild/dumbmake/README.rst => build/docs/mozbuild/dumbmake.rst rename : python/mozbuild/mozbuild/frontend/README.rst => build/docs/mozbuild/frontend.rst rename : python/mozbuild/README.rst => build/docs/mozbuild/index.rst
29 lines
910 B
ReStructuredText
29 lines
910 B
ReStructuredText
========
|
|
Glossary
|
|
========
|
|
|
|
.. glossary::
|
|
:sorted:
|
|
|
|
object directory
|
|
A directory holding the output of the build system. The build
|
|
system attempts to isolate all file modifications to this
|
|
directory. By convention, object directories are commonly
|
|
directories under the source directory prefixed with **obj-**.
|
|
e.g. **obj-firefox**.
|
|
|
|
mozconfig
|
|
A shell script used to configure the build system.
|
|
|
|
configure
|
|
A generated shell script which detects the current system
|
|
environment, applies a requested set of build configuration
|
|
options, and writes out metadata to be consumed by the build
|
|
system.
|
|
|
|
config.status
|
|
An executable file produced by **configure** that takes the
|
|
generated build config and writes out files used to build the
|
|
tree. Traditionally, config.status writes out a bunch of
|
|
Makefiles.
|