Changes in / [1dd5fd1:2363147]
- 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
r1dd5fd1 r2363147 11 11 ## Created On : Sun May 31 22:14:18 2015 12 12 ## Last Modified By : Peter A. Buhr 13 ## Last Modified On : Wed May 17 11:02:34 202314 ## Update Count : 5 613 ## Last Modified On : Tue Jul 16 16:59:12 2024 14 ## Update Count : 57 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 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/prettyprinter 38 38 39 39 debug ?= yes -
doc/bibliography/pl.bib
r1dd5fd1 r2363147 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
r1dd5fd1 r2363147 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.