summaryrefslogtreecommitdiff
path: root/GNUmakefile
diff options
context:
space:
mode:
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile17
1 files changed, 2 insertions, 15 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 6fae6c8e..a3520cb0 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -29,9 +29,10 @@ all: locale template
for lang in en de fr it es ru pt; do \
$(cp) $$lang/rss.xml $$lang/news/rss.xml; \
done)
- (for d in dist icons papers pdf presentations ; do \
+ (for d in dist icons papers presentations ; do \
$(cp) -R $$d rendered/ ; \
done)
+ ($(cp) -R pdf rendered/static/)
# Extract translateable strings from jinja2 templates.
locale/messages.pot: template/*.j2 common/*.j2 common/*.j2.inc
@@ -86,17 +87,3 @@ submodules/init:
submodules/update:
$(git) submodule update --recursive --remote
-
-.SILENT: show-help
-show-help:
- $(printf) "install:\t\tInstall the website\n"
- $(printf) "all:\t\t\tBuild the website\n"
- $(printf) "locale/messages.pot:\tExtract translateable strings from jinja2 templates.\n"
- $(printf) "locale-update:\t\tUpdate translation files with new strings.\n"
- $(printf) "locale-compile:\t\tCompile translation files for use.\n"
- $(printf) "locale:\t\t\tProcess everything related to gettext translations.\n"
- $(printf) "template:\t\texpand jinja2 templates to html.\n"
- $(printf) "run:\t\t\tspawn python webserver and open the current directory.\n"
- $(printf) "clean:\t\t\tclean.\n"
- $(printf) "submodules/init:\tinit git submodules\n"
- $(printf) "submodules/update:\tupdate git submodules\n"