Skip to content

Commit

Permalink
Fix target names
Browse files Browse the repository at this point in the history
An oversight from renaming
  • Loading branch information
alexpovel committed Nov 16, 2020
1 parent 09a1518 commit 481dec6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# The following are "special targets", see:
# https://www.gnu.org/software/make/manual/html_node/Special-Targets.html#Special-Targets
# A phony target: not a file, just some routine.
.PHONY: all clean mostlyclean clean.aux clean.pdf tex preflight help
.PHONY: all clean mostlyclean clean-aux clean-pdf tex preflight help

# =====================================================================================
# Helper tool, adjusted from:
Expand Down Expand Up @@ -157,7 +157,7 @@ clean-pdf: # Cleans all found PDFs.
@$(RM) *.pdf

# For target name, see: https://www.gnu.org/prep/standards/html_node/Standard-Targets.html
mostlyclean: clean.aux clean.pdf # Runs clean.{aux,pdf}, then cleans more.
mostlyclean: clean-aux clean-pdf # Runs clean-{aux,pdf}, then cleans more.
@echo "Removing downloaded pandoc archive, if any..."
@$(RM) $(EISVOGEL_ARCHIVE)

Expand Down

0 comments on commit 481dec6

Please sign in to comment.