- Timestamp:
- Jul 16, 2024, 10:35:29 PM (17 months ago)
- 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. - Location:
- doc
- Files:
-
- 2 edited
-
bibliography/pl.bib (modified) (5 diffs)
-
user/Makefile (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
doc/bibliography/pl.bib
r68ea8d2 r97f9619 1863 1863 key = {concurrent locking}, 1864 1864 author = {Peter A. Buhr and David Dice and Wim H. Hesselink}, 1865 title = { concurrent-locking},1865 title = {Concurrent locking algorithms}, 1866 1866 howpublished= {\url{https://github.com/pabuhr/concurrent-locking}}, 1867 1867 } … … 4001 4001 organization= {Google}, 4002 4002 year = 2009, 4003 note = {\url{http ://golang.org/ref/spec}},4003 note = {\url{https://go.dev/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}},4183 4182 } 4184 4183 … … 7802 7801 @book{Scott24, 7803 7802 author = {Michael L. Scott and Trevor Brown}, 7804 booktitle = {Shared-Memory Synchronization},7803 title = {Shared-Memory Synchronization}, 7805 7804 series = {Synthesis Lectures on Computer Architecture}, 7806 7805 edition = {2nd}, … … 8532 8531 key = {TIOBE Index}, 8533 8532 author = {{TIOBE Index}}, 8534 howpublished= {\url{http ://www.tiobe.com/tiobe_index}},8533 howpublished= {\url{https://www.tiobe.com/tiobe-index}}, 8535 8534 } 8536 8535 -
doc/user/Makefile
r68ea8d2 r97f9619 6 6 TeXLIB = .:${Macros}:${Build}: 7 7 LaTeX = TEXINPUTS=${TeXLIB} && export TEXINPUTS && latex -halt-on-error -output-directory=${Build} 8 BibTeX = BIBINPUTS=../bibliography: && export BIBINPUTS && bibtex 8 BibDir = ../bibliography 9 BibTeX = BIBINPUTS=${BibDir}: && export BIBINPUTS && bibtex 9 10 10 11 MAKEFLAGS = --no-print-directory --silent # … … 61 62 62 63 ${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} 64 65 # Conditionally create an empty *.ind (index) file for inclusion until makeindex is run. 65 66 if [ ! -r ${basename $@}.ind ] ; then touch ${Build}/${basename $@}.ind ; fi
Note:
See TracChangeset
for help on using the changeset viewer.