Changes in / [1dd5fd1:2363147]


Ignore:
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • Makefile.am

    r1dd5fd1 r2363147  
    1111## Created On       : Sun May 31 22:14:18 2015
    1212## Last Modified By : Peter A. Buhr
    13 ## Last Modified On : Wed May 17 11:02:34 2023
    14 ## Update Count     : 56
     13## Last Modified On : Tue Jul 16 16:59:12 2024
     14## Update Count     : 57
    1515###############################################################################
    1616
     
    3535man1_MANS = doc/man/cfa.1
    3636
    37 EXTRA_DIST = LICENSE doc/man/cfa.1 libcfa/configure libcfa/Makefile.dist.am libcfa/Makefile.dist.in tools/build/distcc_hash tools/build/push2dist.sh
     37EXTRA_DIST = LICENSE doc/man/cfa.1 libcfa/configure libcfa/Makefile.dist.am libcfa/Makefile.dist.in tools/build/distcc_hash tools/build/push2dist.sh tools/prettyprinter
    3838
    3939debug ?= yes
  • doc/bibliography/pl.bib

    r1dd5fd1 r2363147  
    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

    r1dd5fd1 r2363147  
    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.