cryptocd/documents/Makefile
2005-05-13 09:51:13 +00:00

77 lines
2.8 KiB
Makefile

DOCUMENT_NAMES=asymmetrie chaosradio copyleft intro mailserviceanbieter mozilla outlook pgp_vs_gnupg senselab thunderbird thunderbirdnutzung warumverschluesselung wiefunktionierts winpt
# our self written documents
LYX_FILES := $(foreach dir,$(DOCUMENT_NAMES),$(dir)/$(dir).lyx)
# the tex output of lyx
TEX_FILES := $(patsubst %.lyx,%.tex,$(LYX_FILES))
# output files of lyx that are already processed by mod_html_files.py
HTML_FILES := $(patsubst %.lyx,%.html,$(LYX_FILES))
# headers, navigation and footers are added (according to online/offline target)
TARGET_FILES := $(foreach dir,$(DOCUMENT_NAMES),_output/$(dir).html)
# header, navigation and footer files
ASC_FILES := $(wildcard *.asc)
# target: online or offline (will be overriden for online target automatically)
LINE_STATUS = offline
# output parameters for latex2html
LATEX2HTMLPREFIX := -no_auto_link -split 0 -no_navigation -no_subdir -dir _output -info 0 -style cryptocd.css -local_icons -address 0
# virtual targets that have different names than the produced files - they will alway be executed,
# if another target depends on them (they do not look for timestamps)
.PHONY : clean online offline clean-targets install all
# default target (offline)
all: $(HTML_FILES)
# copy the created files to the destination directory (usually outside of this directory tree)
install: $(TARGET_FILES)
@[ -z "$(CCD_BUILD_DIR)" ] && echo "CCD_BUILD_DIR must be defined! (this should be done by the parent Makefile)" >&2 && false
@if [ ! -e "$(CCD_BUILD_DIR)" ] ; \
then echo "CCD_BUILD_DIR ($(CCD_BUILD_DIR)) does not exist!" ; \
exit 1 ; \
fi
@cp -r _output/* "$(CCD_BUILD_DIR)/doku"
clean-targets:
-rm $(TARGET_FILES) 2>/dev/null
online: LINE_STATUS=online
offline: LINE_STATUS=offline
online offline: clean-targets $(TARGET_FILES)
# add headers, navigation and footers
$(TARGET_FILES): $(HTML_FILES) $(ASC_FILES)
cat nav.$(LINE_STATUS).asc $(notdir $(basename $@))/$(notdir $@) >$@
# create tex files from lyx
$(TEX_FILES): %.tex: %.lyx
lyx -e latex $*.lyx
# original html-files, as they are created by lyx
$(HTML_FILES): %.html: %.tex
@-[ ! -e "_output" ] && mkdir _output
latex2html $(LATEX2HTMLPREFIX) $*.tex
# die html-Datei wurde jetzt im _output-Verzeichnis erstellt (inklusive Bilder)
-rm _output/WARNINGS $*-labels.pl $*-internals.pl $*.log 2>/dev/null
-rm _output/$(notdir $(basename $@)).css 2>/dev/null
-rm _output/images.aux _output/images.log _output/images.out _output/images.pl _output/images.text _output/img?.old _output/labels.pl _output/missfont.log _output/images.tex 2>/dev/null
mv _output/$(shell dirname $@).html $@
python mod_html_files.py $@
clean:
-rm $(TEX_FILES) 2>/dev/null
-rm $(HTML_FILES) 2>/dev/null
-rm -r _output 2>/dev/null
-rm $(foreach dir,$(DOCUMENT_NAMES),$(dir)/WARNINGS) 2>/dev/null
-rm $(foreach dir,$(DOCUMENT_NAMES),$(dir)/$(dir).emergency) 2>/dev/null