X-Git-Url: https://git.llucax.com/z.facultad/75.00/presentacion.git/blobdiff_plain/7d81729c71b10be8a603fd924d7c665a20f211cf..3b890a0dc4b9aa8930e1bd2aedf1bec61f8b3af1:/Makefile?ds=sidebyside diff --git a/Makefile b/Makefile index 5fa5df3..cb2a467 100644 --- a/Makefile +++ b/Makefile @@ -40,8 +40,10 @@ override V := $(if $V,,@) # honour make -s flag override V := $(if $(findstring s,$(MAKEFLAGS)),,$V) +targets := presentacion.pdf notas.pdf + .PHONY: all -all: presentacion.pdf notas.pdf +all: $(targets) presentacion.pdf: $O/presentacion.tex $(imgs) $(if $V,@echo "$(PDFLATEX) $< > $@") @@ -90,6 +92,6 @@ clean: .PHONY: clean-all clean-all: clean - $(RM) presentacion.pdf + $(RM) $(targets) __dummy := $(shell mkdir -p $O/img)