Changeset 62e782e for doc/theses/aaron_moss/phd/Makefile
- Timestamp:
- Aug 27, 2018, 5:30:25 PM (5 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, no_list, persistent-indexer, pthread-emulation, qualifiedEnum
- Children:
- ce00317
- Parents:
- 2a9d12d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/theses/aaron_moss/phd/Makefile
r2a9d12d r62e782e 6 6 AUX = ${BASE}.aux ${BASE}.bbl ${BASE}.blg ${BASE}.log ${BASE}.out ${BASE}.toc 7 7 8 .PHONY : all rebuild-refs clean 8 SOURCES = ${addsuffix .tex, \ 9 thesis \ 10 frontpgs \ 11 introduction \ 12 background \ 13 type-environment \ 14 resolution-heuristics \ 15 conclusion \ 16 } 17 18 .PHONY : all rebuild-refs clean wc 9 19 10 20 all : ${DOCUMENT} … … 13 23 @rm -frv ${DOCUMENT} ${AUX} 14 24 15 ${DOCUMENT} : 25 wc : 26 wc ${SOURCES} 27 28 ${DOCUMENT} : ${SOURCES} 16 29 ${LATEX} ${BASE} 17 30 ${LATEX} ${BASE} 18 31 19 rebuild-refs : 32 rebuild-refs : ${SOURCES} aaron-thesis.bib 20 33 ${LATEX} ${BASE} 21 34 ${BIBTEX} ${BASE}
Note: See TracChangeset
for help on using the changeset viewer.