Changes in / [2363147:1dd5fd1]
- Files:
-
- 3 edited
-
Makefile.am (modified) (2 diffs)
-
doc/bibliography/pl.bib (modified) (5 diffs)
-
doc/user/Makefile (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
Makefile.am
r2363147 r1dd5fd1 11 11 ## Created On : Sun May 31 22:14:18 2015 12 12 ## Last Modified By : Peter A. Buhr 13 ## Last Modified On : Tue Jul 16 16:59:12 202414 ## Update Count : 5 713 ## Last Modified On : Wed May 17 11:02:34 2023 14 ## Update Count : 56 15 15 ############################################################################### 16 16 … … 35 35 man1_MANS = doc/man/cfa.1 36 36 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 tools/prettyprinter37 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 38 38 39 39 debug ?= yes -
doc/bibliography/pl.bib
r2363147 r1dd5fd1 1863 1863 key = {concurrent locking}, 1864 1864 author = {Peter A. Buhr and David Dice and Wim H. Hesselink}, 1865 title = { Concurrent locking algorithms},1865 title = {concurrent-locking}, 1866 1866 howpublished= {\url{https://github.com/pabuhr/concurrent-locking}}, 1867 1867 } … … 4001 4001 organization= {Google}, 4002 4002 year = 2009, 4003 note = {\url{http s://go.dev/ref/spec}},4003 note = {\url{http://golang.org/ref/spec}}, 4004 4004 } 4005 4005 … … 4180 4180 number = 12, 4181 4181 pages = {2463-2500}, 4182 note = {\url{https://onlinelibrary.wiley.com/doi/10.1002/spe.3262}}, 4182 4183 } 4183 4184 … … 7801 7802 @book{Scott24, 7802 7803 author = {Michael L. Scott and Trevor Brown}, 7803 title = {Shared-Memory Synchronization},7804 booktitle = {Shared-Memory Synchronization}, 7804 7805 series = {Synthesis Lectures on Computer Architecture}, 7805 7806 edition = {2nd}, … … 8531 8532 key = {TIOBE Index}, 8532 8533 author = {{TIOBE Index}}, 8533 howpublished= {\url{http s://www.tiobe.com/tiobe-index}},8534 howpublished= {\url{http://www.tiobe.com/tiobe_index}}, 8534 8535 } 8535 8536 -
doc/user/Makefile
r2363147 r1dd5fd1 6 6 TeXLIB = .:${Macros}:${Build}: 7 7 LaTeX = TEXINPUTS=${TeXLIB} && export TEXINPUTS && latex -halt-on-error -output-directory=${Build} 8 BibDir = ../bibliography 9 BibTeX = BIBINPUTS=${BibDir}: && export BIBINPUTS && bibtex 8 BibTeX = BIBINPUTS=../bibliography: && export BIBINPUTS && bibtex 10 9 11 10 MAKEFLAGS = --no-print-directory --silent # … … 62 61 63 62 ${BASE}.dvi : Makefile ${GRAPHS} ${PROGRAMS} ${PICTURES} ${FIGURES} ${SOURCES} ${Macros}/common.tex ${Macros}/common.sty \ 64 ${Macros}/lstlang.sty ${Macros}/indexstyle ${BibDir}/pl.bib build/version | ${Build}63 ${Macros}/lstlang.sty ${Macros}/indexstyle ../bibliography/pl.bib build/version | ${Build} 65 64 # Conditionally create an empty *.ind (index) file for inclusion until makeindex is run. 66 65 if [ ! -r ${basename $@}.ind ] ; then touch ${Build}/${basename $@}.ind ; fi
Note:
See TracChangeset
for help on using the changeset viewer.