summaryrefslogtreecommitdiffstats
path: root/Configurations/README.design
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-02-18 13:04:05 +0100
committerRichard Levitte <levitte@openssl.org>2016-02-18 23:42:09 +0100
commit88297284ad14a233430cb5140d368edf17dacf7a (patch)
tree9bb78754b806e2341ce88e1928a7244361d34b8d /Configurations/README.design
parent7d1037661afedc008f0abbd050c492e23905b431 (diff)
Don't treat .d (depend) files separately from object files
.d (.MMS in the VMS world) files with just dependencies are built from exactly the same conditions as the object files. Therefore, the rules for them can be built at the same time as the rules for the corresponding object files. This removes the requirement for a src2dep function in the build file templates, and for common.tmpl to call it. In the end, the existence of depend files is entirely up to the build file. Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'Configurations/README.design')
-rw-r--r--Configurations/README.design18
1 files changed, 0 insertions, 18 deletions
diff --git a/Configurations/README.design b/Configurations/README.design
index ed2d25efa1..80839faa6d 100644
--- a/Configurations/README.design
+++ b/Configurations/README.design
@@ -384,24 +384,6 @@ build static libraries from object files, to build shared libraries
from static libraries, to programs from object files and libraries,
etc.
- src2dep - function that produces build file lines to get the
- dependencies for an object file into a dependency
- file.
-
- It's called like this:
-
- src2dep(obj => "PATH/TO/objectfile",
- srcs => [ "PATH/TO/sourcefile", ... ],
- incs => [ "INCL/PATH", ... ]);
-
- 'obj' has the dependent object file as well as
- object file the dependencies are for; it's *without*
- extension, src2dep() is expected to add that.
- 'srcs' has the list of source files to build the
- object file, with the first item being the source
- file that directly corresponds to the object file.
- 'incs' is a list of include file directories.
-
src2obj - function that produces build file lines to build an
object file from source files and associated data.