Commit 1050616c authored by witiko's avatar witiko
Browse files

Flattened the `logo/` directory structure.

parent f915e2fd
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
SUBMAKES_REQUIRED=logo/mu logo/mu/color locale style style/mu
SUBMAKES_REQUIRED=logo/mu locale style style/mu
SUBMAKES_MISCELLANEOUS=guide/mu
SUBMAKES=$(SUBMAKES_REQUIRED) $(SUBMAKES_MISCELLANEOUS)
.PHONY: all complete clean dist dist-implode implode rebase \
@@ -6,8 +6,8 @@ SUBMAKES=$(SUBMAKES_REQUIRED) $(SUBMAKES_MISCELLANEOUS)

CLASSFILES=fithesis.cls fithesis2.cls fithesis3.cls
STYLEFILES=style/*.sty style/*/*.sty style/*/*.clo
EPSLOGOS=logo/*/*.eps logo/*/color/*.eps
PDFLOGOS=logo/*/*.pdf logo/*/color/*.pdf
EPSLOGOS=logo/*/*.eps
PDFLOGOS=logo/*/*.pdf
LOGOS=$(EPSLOGOS) $(PDFLOGOS)
LOCALES=locale/*.def locale/*/*.def locale/*/*/*.def
DTXFILES=*.dtx locale/czech.dtx locale/english.dtx \
+11 −6
Original line number Diff line number Diff line
@@ -592,10 +592,13 @@
% filename of the logo file to be used to \textit{filename}. The
% \textit{filename} is stored within the private
% |\thesis@universityLogo| macro, whose implicit value is
% \texttt{base}. The logo file is loaded from the
% |\thesis@logopath|\discretionary{}{}{}|\thesis@logo| path.
% \texttt{fithesis-base}. The \texttt{fithesis-} prefix serves to
% prevent package clashes with other similarly named package files
% within the \TeX\ directory structure. The logo file is loaded
% from the |\thesis@logopath|\discretionary{}{}{}|\thesis@logo|
% path.
%    \begin{macrocode}
\def\thesis@universityLogo{base}
\def\thesis@universityLogo{fithesis-base}
\define@key{thesis}{universityLogo}{%
  \def\thesis@universityLogo{#1}}
%    \end{macrocode}
@@ -606,10 +609,12 @@
% of the logo file to be used to \textit{filename}. The
% \textit{filename} is stored within the private
% |\thesis@facultyLogo| macro, whose implicit value is
% |\thesis@faculty|. The logo file is loaded from the
% |\thesis@logopath\thesis@logo| path.
% |fithesis-\thesis@faculty|. The \texttt{fithesis-} prefix serves
% to prevent package clashes with other similarly named logo
% files within the \TeX\ directory structure. The logo file is
% loaded from the |\thesis@logopath\thesis@logo| path.
%    \begin{macrocode}
\def\thesis@facultyLogo{\thesis@faculty}
\def\thesis@facultyLogo{fithesis-\thesis@faculty}
\define@key{thesis}{facultyLogo}{%
  \def\thesis@facultyLogo{#1}}
%    \end{macrocode}
+9 −2
Original line number Diff line number Diff line
PDFFILES=econ.pdf fsps.pdf law.pdf med.pdf ped.pdf phil.pdf sci.pdf \
  fi.pdf fss.pdf base.pdf
PDFFILES=fithesis-econ.pdf fithesis-fsps.pdf fithesis-law.pdf \
	fithesis-med.pdf fithesis-ped.pdf fithesis-phil.pdf \
	fithesis-sci.pdf fithesis-fi.pdf fithesis-fss.pdf \
	fithesis-base.pdf fithesis-econ-color.pdf \
	fithesis-fsps-color.pdf fithesis-law-color.pdf \
	fithesis-med-color.pdf fithesis-ped-color.pdf \
	fithesis-phil-color.pdf fithesis-sci-color.pdf \
	fithesis-fi-color.pdf fithesis-fss-color.pdf \
	fithesis-base-color.pdf
.PHONY: all implode

all: $(PDFFILES)

fithesis/logo/mu/color/.gitignore

deleted100644 → 0
+0 −2
Original line number Diff line number Diff line
examples.pdf
examples.sh

fithesis/logo/mu/color/Makefile

deleted100644 → 0
+0 −11
Original line number Diff line number Diff line
PDFFILES=econ.pdf fsps.pdf law.pdf med.pdf ped.pdf phil.pdf sci.pdf \
  fi.pdf fss.pdf base.pdf
.PHONY: all implode

all: $(PDFFILES)

%.pdf: %.eps
	epstopdf $<

implode:
	rm -f $(PDFFILES)
Loading