Changeset 97f9619 for doc


Ignore:
Timestamp:
Jul 16, 2024, 10:35:29 PM (17 months ago)
Author:
JiadaL <j82liang@…>
Branches:
master
Children:
0097d08
Parents:
68ea8d2 (diff), 88bc876 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc

Location:
doc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • doc/bibliography/pl.bib

    r68ea8d2 r97f9619  
    18631863    key         = {concurrent locking},
    18641864    author      = {Peter A. Buhr and David Dice and Wim H. Hesselink},
    1865     title       = {concurrent-locking},
     1865    title       = {Concurrent locking algorithms},
    18661866    howpublished= {\url{https://github.com/pabuhr/concurrent-locking}},
    18671867}
     
    40014001    organization= {Google},
    40024002    year        = 2009,
    4003     note        = {\url{http://golang.org/ref/spec}},
     4003    note        = {\url{https://go.dev/ref/spec}},
    40044004}
    40054005
     
    41804180    number      = 12,
    41814181    pages       = {2463-2500},
    4182     note        = {\url{https://onlinelibrary.wiley.com/doi/10.1002/spe.3262}},
    41834182}
    41844183
     
    78027801@book{Scott24,
    78037802    author      = {Michael L. Scott and Trevor Brown},
    7804     booktitle   = {Shared-Memory Synchronization},
     7803    title       = {Shared-Memory Synchronization},
    78057804    series      = {Synthesis Lectures on Computer Architecture},
    78067805    edition     = {2nd},
     
    85328531    key         = {TIOBE Index},
    85338532    author      = {{TIOBE Index}},
    8534     howpublished= {\url{http://www.tiobe.com/tiobe_index}},
     8533    howpublished= {\url{https://www.tiobe.com/tiobe-index}},
    85358534}
    85368535
  • doc/user/Makefile

    r68ea8d2 r97f9619  
    66TeXLIB = .:${Macros}:${Build}:
    77LaTeX  = TEXINPUTS=${TeXLIB} && export TEXINPUTS && latex -halt-on-error -output-directory=${Build}
    8 BibTeX = BIBINPUTS=../bibliography: && export BIBINPUTS && bibtex
     8BibDir = ../bibliography
     9BibTeX = BIBINPUTS=${BibDir}: && export BIBINPUTS && bibtex
    910
    1011MAKEFLAGS = --no-print-directory --silent #
     
    6162
    6263${BASE}.dvi : Makefile ${GRAPHS} ${PROGRAMS} ${PICTURES} ${FIGURES} ${SOURCES} ${Macros}/common.tex ${Macros}/common.sty \
    63                 ${Macros}/lstlang.sty ${Macros}/indexstyle ../bibliography/pl.bib build/version | ${Build}
     64                ${Macros}/lstlang.sty ${Macros}/indexstyle ${BibDir}/pl.bib build/version | ${Build}
    6465        # Conditionally create an empty *.ind (index) file for inclusion until makeindex is run.
    6566        if [ ! -r ${basename $@}.ind ] ; then touch ${Build}/${basename $@}.ind ; fi
Note: See TracChangeset for help on using the changeset viewer.