mmcp-19-gerstner

Computational Model of Unsteady Hydromechanics of Large Amplitude Gerstner Waves
git clone https://git.igankevich.com/mmcp-19-gerstner.git
Log | Files | Refs

Makefile (376B)


      1 LATEXMK = env max_print_line=1000 texfot --no-stderr --quiet latexmk
      2 
      3 FLAGS = \
      4 	-8bit \
      5 	-interaction=nonstopmode \
      6 	-output-directory=build \
      7 	-pdf \
      8 	-bibtex \
      9 	-shell-escape
     10 
     11 NAME = mmcp-19-gerstner
     12 
     13 build/$(NAME).pdf: build
     14 build/$(NAME).pdf: main.tex
     15 	@echo "   LATEX $<"
     16 	@-$(LATEXMK) $(FLAGS) -f $<
     17 
     18 build:
     19 	@mkdir -p build
     20 
     21 clean:
     22 	@rm -rf build
     23 
     24 .PHONY: build clean