Commit a37b7e8e authored by Vít Novotný's avatar Vít Novotný
Browse files

Documented the rest of the Makefiles.

parent 9ed82e63
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -20,15 +20,23 @@ OUTPUT=fithesis-czech.def mu/law/fithesis-czech.def \
	fithesis-english.def

.PHONY: explode implode all

# This target creates the locale file directory
# structure and creates the locale files.
all:
	mkdir -p $(DIRECTORIES)
	make explode

# This target creates all locale files.
explode: $(LOGS)

# This target creates the locale files from one
# DTX file.
%.log: %.ins %.dtx
	xetex $<

# This target tears down the locale file directory
# structure along with the locale files.
implode:
	rm -f $(OUTPUT) $(LOGS)
	-rmdir $(DIRECTORIES)
+3 −0
Original line number Diff line number Diff line
@@ -9,10 +9,13 @@ PDFFILES=fithesis-econ.pdf fithesis-fsps.pdf fithesis-law.pdf \
	fithesis-base-color.pdf
.PHONY: all implode

# This target converts all the EPS logos to PDF.
all: $(PDFFILES)

# This target converts a single EPS logo to PDF.
%.pdf: %.eps
	epstopdf $<

# This target removes all PDF logos.
implode:
	rm -f $(PDFFILES)
+5 −1
Original line number Diff line number Diff line
LOGS=base.log
OUTPUT=fithesis-base.sty

.PHONY: explode implode all

# These targets create all the locale files.
all: explode
explode: $(LOGS)

# This target creates the locale files from
# one DTX file.
%.log: %.ins %.dtx
	xetex $<

# This target removes all the locale files.
implode:
	rm -f $(OUTPUT) $(LOGS)
+4 −1
Original line number Diff line number Diff line
@@ -5,12 +5,15 @@ OUTPUT=fithesis-base.sty fithesis-1[012].clo fithesis-fi.sty \
	fithesis-fss.sty fithesis-law.sty fithesis-econ.sty \
	fithesis-med.sty fithesis-fsps.sty

.PHONY: explode implode all
# These targets create all the locale files.
all: explode
explode: $(LOGS)

# This target creates the locale files from
# one DTX file.
%.log: %.ins %.dtx
	xetex $<

# This target removes all the locale files.
implode:
	rm -f $(OUTPUT) $(LOGS)