aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 4564ec2..5ef668d 100644
--- a/Makefile
+++ b/Makefile
@@ -8,13 +8,13 @@ DTX = $(addsuffix .dtx, $(PACKAGE))
INS = $(addsuffix .ins, $(PACKAGE))
PDF = $(addsuffix .pdf, $(PACKAGE))
-all: $(DTX) $(INS)
+all: $(DTX) $(INS) $(PDF)
# Generate package using makedtx and pdflatex
$(DTX): %.dtx: tex/%.sty doc/%.tex
makedtx -author "$(AUTHOR)" -license $(LICENSE) \
- -dir $(dir $<) -src "$*\.sty=>$*.sty" -doc doc/$*.tex $*
+ -dir $(dir $<) -src "(.*)\.sty=>\1.sty" -doc doc/$*.tex $*
$(INS): %.ins: %.dtx
@@ -51,5 +51,5 @@ uninstall:
clean:
make -C test clean
- rm -f *.dtx *.ins
- rm -f *.~
+ rm -f *.dtx *.ins *.pdf
+ rm -f *~ tex/*~ doc/*~