Fixing documentation for PDF output. Fixed Makefile to not generate errors on clean if the build failed.
This commit is contained in:
parent
a1dd0a8313
commit
6bf0d93a1f
2
Makefile
2
Makefile
|
@ -16,7 +16,7 @@ mp_suggest_man.pdf: mp_suggest_man.tex
|
||||||
xelatex $<
|
xelatex $<
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm mp_suggest.man mp_suggest.1 mp_suggest_man.log mp_suggest_man.out mp_suggest_man.aux mp_suggest_man.pdf
|
rm -f mp_suggest.man mp_suggest.1 mp_suggest_man.log mp_suggest_man.out mp_suggest_man.aux mp_suggest_man.pdf
|
||||||
|
|
||||||
all: ${TARFILES}
|
all: ${TARFILES}
|
||||||
|
|
||||||
|
|
|
@ -35,9 +35,9 @@
|
||||||
\section{Synopsis}
|
\section{Synopsis}
|
||||||
%%%%%%%%%%%%%%%%%%
|
%%%%%%%%%%%%%%%%%%
|
||||||
|
|
||||||
\Prog{mp\_suggest} \oOptArg{-g}{genre}
|
\Prog{mp\_suggest} \oOptArg{-g}{ genre}
|
||||||
\oOptArg{-r}{artist}
|
\oOptArg{-r}{ artist}
|
||||||
\oOptArg{-a}{album}
|
\oOptArg{-a}{ album}
|
||||||
\oOpt{-d}
|
\oOpt{-d}
|
||||||
\oOpt{-n}
|
\oOpt{-n}
|
||||||
\oOpt{-h}
|
\oOpt{-h}
|
||||||
|
@ -65,15 +65,15 @@ own music archive, but as an exercise in writing Hy, it was fun.
|
||||||
\section{Options}
|
\section{Options}
|
||||||
%%%%%%%%%%%%%%%%%
|
%%%%%%%%%%%%%%%%%
|
||||||
\begin{Description}
|
\begin{Description}
|
||||||
\item[\OptArg{--genre}{genre}] Set the genre manually from the command
|
\item[\OptArg{--genre}{ genre}] Set the genre manually from the command
|
||||||
line. This overrides any settings found in the ID3 tag. A short form
|
line. This overrides any settings found in the ID3 tag. A short form
|
||||||
of this tag is ``-g''
|
of this tag is ``-g''
|
||||||
|
|
||||||
\item[\OptArg{--album}{album}] Set the album manually from the command
|
\item[\OptArg{--album}{ album}] Set the album manually from the command
|
||||||
line. This overrides any settings found in the ID3 tag. A short form
|
line. This overrides any settings found in the ID3 tag. A short form
|
||||||
of this tag is ``-a''
|
of this tag is ``-a''
|
||||||
|
|
||||||
\item[\OptArg{--artist}{artist}] Set the artist manually from the command
|
\item[\OptArg{--artist}{ artist}] Set the artist manually from the command
|
||||||
line. This overrides any settings found in the ID3 tag. A short form
|
line. This overrides any settings found in the ID3 tag. A short form
|
||||||
of this tag is ``-r''
|
of this tag is ``-r''
|
||||||
|
|
||||||
|
@ -90,6 +90,7 @@ own music archive, but as an exercise in writing Hy, it was fun.
|
||||||
|
|
||||||
\item[\Opt{--version}] Print the version information. A short form of this
|
\item[\Opt{--version}] Print the version information. A short form of this
|
||||||
tag is ``-v''
|
tag is ``-v''
|
||||||
|
\end{Description}
|
||||||
|
|
||||||
\section{Requirements}
|
\section{Requirements}
|
||||||
%%%%%%%%%%%%%%%%%%%%%%
|
%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
|
Loading…
Reference in New Issue