diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-07-04 21:36:46 +0000 |
---|---|---|
committer | Gerald W. Carter <jerry@samba.org> | 2008-04-23 08:47:00 -0500 |
commit | 55d8ee039a920508fb51bcc85397e26acc365f60 (patch) | |
tree | 77c323ae9e51c71202c8c4af948fc5e2082c778f /docs/Makefile | |
parent | b5f9c625fe26329edf19537939609c3e039e98e6 (diff) | |
download | samba-55d8ee039a920508fb51bcc85397e26acc365f60.tar.gz samba-55d8ee039a920508fb51bcc85397e26acc365f60.tar.bz2 samba-55d8ee039a920508fb51bcc85397e26acc365f60.zip |
Some random updates.
(This used to be commit 57d0cc9fcdc1c790a601f6dcf7071188448a5f58)
Diffstat (limited to 'docs/Makefile')
-rw-r--r-- | docs/Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/docs/Makefile b/docs/Makefile index 8704ead718..2d3b3e8cc6 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -151,16 +151,16 @@ $(PDFDIR)/%.pdf: %.pdf @echo >> $@ @echo "\$$(HTMLDIR)/%: $*/%" >> $@ - @echo " mkdir -p \$$(@D)" >> $@ - @echo " cp \$$< \$$@" >> $@ + @echo " @mkdir -p \$$(@D)" >> $@ + @echo " @cp \$$< \$$@" >> $@ @echo >> $@ @echo "\$$(HTMLDIR)/$*/%: $*/%" >> $@ - @echo " mkdir -p \$$(@D)" >> $@ - @echo " cp \$$< \$$@" >> $@ + @echo " @mkdir -p \$$(@D)" >> $@ + @echo " @cp \$$< \$$@" >> $@ @echo >> $@ @echo "\$$(HTMLHELPDIR)/$*/%: $*/%" >> $@ - @echo " mkdir -p \$$(@D)" >> $@ - @echo " cp \$$< \$$@" >> $@ + @echo " @mkdir -p \$$(@D)" >> $@ + @echo " @cp \$$< \$$@" >> $@ @echo >> $@ @echo "$*-images-html-single: \$$(addprefix \$$(HTMLDIR)/, \$$($*-images-html))" >> $@ @echo "$*-images-html-chunks: \$$(addprefix \$$(HTMLDIR)/$*/, \$$($*-images-html))" >> $@ @@ -187,10 +187,10 @@ $(DVIDIR)/%.dvi: %.dvi -$(LATEX) $< %.eps: %.dia - $(DIA) -t eps-builtin -e $@ $< + @$(DIA) -t eps-builtin -e $@ $< %.png: %.dia - $(DIA) -e $@ $< + @$(DIA) -e $@ $< %.pdf: %.eps $(EPSTOPDF) $< |