Skip to content

Commit

Permalink
simplify some rules
Browse files Browse the repository at this point in the history
  • Loading branch information
ransford committed Mar 19, 2014
1 parent 45e30a3 commit bf85ef5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile.include
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ INCLUDEDTEX = $(patsubst %,%.tex,\
$(shell grep '^[^%]*\\\(input\|include\){' $(TARGET).tex | \
sed 's/[^{]*{\([^}]*\)}.*/\1/'))

AUXFILES = $(foreach T,$(PDFTARGETS:.pdf=), $(T).aux)
AUXFILES += $(patsubst %.tex,%.aux, $(INCLUDEDTEX))
LOGFILES = $(patsubst %.aux,%.log, $(AUXFILES))
AUXFILES = $(PDFTARGETS:.pdf=.aux)
AUXFILES += $(INCLUDEDTEX:.tex=.aux)
LOGFILES = $(AUXFILES:.aux=.log)

## grab a version number from the repository (if any) that stores this.
## * REVISION is the current revision number (short form, for inclusion in text)
Expand Down

0 comments on commit bf85ef5

Please sign in to comment.