Changeset e8db295
- Timestamp:
- Jun 4, 2018, 10:52:39 AM (7 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, with_gc
- Children:
- 863c413
- Parents:
- 7de7b52
- Location:
- doc/theses/thierry_delisle
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/theses/thierry_delisle/.gitignore
r7de7b52 re8db295 25 25 *.pdf 26 26 *.png 27 *.ps 27 28 figures/*.tex 28 29 -
doc/theses/thierry_delisle/Makefile
r7de7b52 re8db295 88 88 mkdir -p ${Build} 89 89 90 %.tex : %.fig 90 %.tex : %.fig ${Build} 91 91 fig2dev -L eepic $< > ${Build}/$@ 92 92 93 %.ps : %.fig 93 %.ps : %.fig ${Build} 94 94 fig2dev -L ps $< > ${Build}/$@ 95 95 96 %.pstex : %.fig 96 %.pstex : %.fig ${Build} 97 97 fig2dev -L pstex $< > ${Build}/$@ 98 98 fig2dev -L pstex_t -p ${Build}/$@ $< > ${Build}/$@_t … … 101 101 # Tools to generate png files 102 102 # 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} 104 104 echo ${basename $@} 105 105 ${LaTeX} figures/${basename $@}.tex … … 109 109 110 110 # creating a pdf of a figure requires generating some latex that just includes the figure 111 figures/%.tex: build/%.pstex 111 figures/%.tex: build/%.pstex ${Build} 112 112 echo -n "\documentclass[preview]{standalone}\n" \ 113 113 "\usepackage[T1]{fontenc}\n" \
Note: See TracChangeset
for help on using the changeset viewer.