computer-organization/cache/TJU-2023-Computer-Organization/Proj1-2/TJU-Latex-Report/Makefile

25 lines
371 B
Makefile

###
# @file Makefile
# @brief Quick Commands
# @author Christopher Liu
# @version 1.0
# @date 2023-01-08
#
PRO_NAME=main
LATEX=xelatex # latexmk -xelatex
BIBTEX=bibtex # latexmk -bibtex
default: quickbuild
# Used when bibtex and indices are NOT modified
quickbuild:
${LATEX} ${PRO_NAME}
build: clean
${LATEX} ${PRO_NAME}
${LATEX} ${PRO_NAME}
clean:
@./clean.sh