Changeset 753

Show
Ignore:
Timestamp:
08/09/07 22:45:45 (1 year ago)
Author:
Gregor
Message:

docs/README.software_engineers: Removed all second-person.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/docs/README.software_engineers

    r752 r753  
    208208 
    209209The -ll flag is only useful for explicitly linking libraries into binaries. If 
    210 your library depends on a non-DSSS library, you must list that dependency in a 
    211 .d file which is part of your library. This is done with the 'link' pragma, 
    212 which must always be specified within version(build): 
     210the DSSS-implemented library depends on a non-DSSS library, the dependency must 
     211be specified in a .d file which is part of the DSSS-implemented library. This 
     212is done with the 'link' pragma, which must always be specified within 
     213version(build): 
    213214version (build) { 
    214215    pragma(link, "example"); 
    215216} 
    216217 
    217 The above example will cause any binary linked against your library to link 
    218 against the library named libexample.a (or example.lib on Windows). 
     218The above example will cause any binary linked against the DSSS-implemented 
     219library to link against the library named libexample.a (or example.lib on 
     220Windows). 
    219221 
    220222 
     
    258260prebuild = cd c_source ; make 
    259261 
    260 You do not need to return to the original directory after 'cd'ing. The 
     262It is unnecessary to return to the original directory after 'cd'ing. The 
    261263directory will be restored after the hook commands have finished. 
    262264 
     
    432434 
    433435Sections creating libraries from directories will normally include all the .d 
    434 files in that directory or any subdirectory of it. You may also specify 
    435 subdirectories explicitly in dsss.conf, which will cause some .d files to be 
    436 reassigned. For example, if you have these files: 
     436files in that directory or any subdirectory of it. It is also possible to 
     437specify subdirectories explicitly in dsss.conf, which will cause some .d files 
     438to be reassigned. For example, if you have these files: 
    437439dzip/algorithm.d, foo/compression/zip.d 
    438440and a section: