Changeset db0fa7c for doc/proposals/concurrency
- Timestamp:
 - May 15, 2017, 3:30:44 PM (8 years ago)
 - Branches:
 - ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
 - Children:
 - 547e9b7
 - Parents:
 - 3bd1eb4
 - Location:
 - doc/proposals/concurrency
 - Files:
 - 
      
- 2 added
 - 1 deleted
 - 1 edited
 - 10 moved
 
- 
          
  Makefile (modified) (4 diffs)
 - 
          
  annex/glossary.tex (moved) (moved from doc/proposals/concurrency/glossary.tex )
 - 
          
  annex/local.bib (moved) (moved from doc/proposals/concurrency/local.bib )
 - 
          
  build/bump_ver.sh (moved) (moved from doc/proposals/concurrency/bump_ver.sh )
 - 
          
  build/version (added)
 - 
          
  figures/ext_monitor.fig (moved) (moved from doc/proposals/concurrency/ext_monitor.fig )
 - 
          
  figures/monitor.fig (moved) (moved from doc/proposals/concurrency/monitor.fig )
 - 
          
  notes/cor-thread-traits.c (moved) (moved from doc/proposals/concurrency/cor-thread-traits.c )
 - 
          
  notes/lit-review.md (moved) (moved from doc/proposals/concurrency/lit-review.md )
 - 
          
  notes/notes.md (moved) (moved from doc/proposals/concurrency/notes.md )
 - 
          
  style/cfa-format.tex (moved) (moved from doc/proposals/concurrency/cfa-format.tex )
 - 
          
  style/style.tex (moved) (moved from doc/proposals/concurrency/style.tex )
 - 
          
  text/intro.tex (added)
 - 
          
  version (deleted)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
doc/proposals/concurrency/Makefile
r3bd1eb4 rdb0fa7c 8 8 9 9 SOURCES = ${addsuffix .tex, \ 10 concurrency\10 thesis \ 11 11 style \ 12 12 cfa-format \ … … 30 30 ## Define the documents that need to be made. 31 31 32 DOCUMENT = concurrency.pdf32 DOCUMENT = thesis.pdf 33 33 34 34 # Directives # … … 42 42 # File Dependencies # 43 43 44 ${DOCUMENT} : ${basename ${DOCUMENT}}.ps44 ${DOCUMENT} : build/${basename ${DOCUMENT}}.ps 45 45 ps2pdf $< 46 46 47 ${basename ${DOCUMENT}}.ps : ${basename ${DOCUMENT}}.dvi47 build/${basename ${DOCUMENT}}.ps : ${basename ${DOCUMENT}}.dvi 48 48 dvips $< -o $@ 49 49 50 ${basename ${DOCUMENT}}.dvi : Makefile ${GRAPHS} ${PROGRAMS} ${PICTURES} ${FIGURES} ${SOURCES} ${basename ${DOCUMENT}}.tex \50 build/${basename ${DOCUMENT}}.dvi : Makefile ${GRAPHS} ${PROGRAMS} ${PICTURES} ${FIGURES} ${SOURCES} ${basename ${DOCUMENT}}.tex \ 51 51 ../../LaTeXmacros/common.tex ../../LaTeXmacros/indexstyle 52 # Conditionally create an empty *.ind (index) file for inclusion until makeindex is run. 53 if [ ! -r ${basename $@}.ind ] ; then touch ${basename $@}.ind ; fi 54 # Must have *.aux file containing citations for bibtex 55 if [ ! -r ${basename $@}.aux ] ; then ${LaTeX} ${basename $@}.tex ; fi 56 -${BibTeX} ${basename $@} 57 # Some citations reference others so run steps again to resolve these citations 58 ${LaTeX} ${basename $@}.tex 59 -${BibTeX} ${basename $@} 60 # Make index from *.aux entries and input index at end of document 61 makeglossaries ${basename $@} 62 #${LaTeX} ${basename $@}.tex 63 # Run again to get index title into table of contents 64 ${LaTeX} ${basename $@}.tex 65 -./bump_ver.sh 66 ${LaTeX} ${basename $@}.tex 52 # Conditionally create the build folder 53 if [ ! -r build ] ; then mkdir build ; fi 54 # # Conditionally create an empty *.ind (index) file for inclusion until makeindex is run. 55 # if [ ! -r ${basename $@}.ind ] ; then touch ${basename $@}.ind ; fi 56 # # Must have *.aux file containing citations for bibtex 57 # if [ ! -r ${basename $@}.aux ] ; then ${LaTeX} ${basename $@}.tex ; fi 58 # -${BibTeX} ${basename $@} 59 # # Some citations reference others so run steps again to resolve these citations 60 # ${LaTeX} ${basename $@}.tex 61 # -${BibTeX} ${basename $@} 62 # # Make index from *.aux entries and input index at end of document 63 # makeglossaries ${basename $@} 64 # #${LaTeX} ${basename $@}.tex 65 # # Run again to get index title into table of contents 66 # ${LaTeX} ${basename $@}.tex 67 # -./bump_ver.sh 68 # ${LaTeX} ${basename $@}.tex 67 69 68 70 … … 72 74 ## Define the default recipes. 73 75 74 %.tex : %.fig76 build/%.tex : %.fig 75 77 fig2dev -L eepic $< > $@ 76 78 77 %.ps : %.fig79 build/%.ps : %.fig 78 80 fig2dev -L ps $< > $@ 79 81 80 %.pstex : %.fig82 build/%.pstex : %.fig 81 83 fig2dev -L pstex $< > $@ 82 84 fig2dev -L pstex_t -p $@ $< > $@_t  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.