Changeset e8db295


Ignore:
Timestamp:
Jun 4, 2018, 10:52:39 AM (6 years ago)
Author:
Thierry Delisle <tdelisle@…>
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, with_gc
Children:
863c413
Parents:
7de7b52
Message:

Added missing dependencies on variabled with parallel compilation is enabled

Location:
doc/theses/thierry_delisle
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • doc/theses/thierry_delisle/.gitignore

    r7de7b52 re8db295  
    2525*.pdf
    2626*.png
     27*.ps
    2728figures/*.tex
    2829
  • doc/theses/thierry_delisle/Makefile

    r7de7b52 re8db295  
    8888        mkdir -p ${Build}
    8989
    90 %.tex : %.fig
     90%.tex : %.fig ${Build}
    9191        fig2dev -L eepic $< > ${Build}/$@
    9292
    93 %.ps : %.fig
     93%.ps : %.fig ${Build}
    9494        fig2dev -L ps $< > ${Build}/$@
    9595
    96 %.pstex : %.fig
     96%.pstex : %.fig ${Build}
    9797        fig2dev -L pstex $< > ${Build}/$@
    9898        fig2dev -L pstex_t -p ${Build}/$@ $< > ${Build}/$@_t
     
    101101# Tools to generate png files
    102102# to create a png we create a pdf and convert it to png
    103 %.png : build/%.pstex figures/%.tex
     103%.png : build/%.pstex figures/%.tex ${Build}
    104104        echo ${basename $@}
    105105        ${LaTeX} figures/${basename $@}.tex
     
    109109
    110110# creating a pdf of a figure requires generating some latex that just includes the figure
    111 figures/%.tex: build/%.pstex
     111figures/%.tex: build/%.pstex ${Build}
    112112        echo -n         "\documentclass[preview]{standalone}\n"         \
    113113                        "\usepackage[T1]{fontenc}\n"                    \
Note: See TracChangeset for help on using the changeset viewer.