summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorDominik Riebeling <Dominik.Riebeling@gmail.com>2006-07-20 18:07:46 +0000
committerDominik Riebeling <Dominik.Riebeling@gmail.com>2006-07-20 18:07:46 +0000
commit9413c2a4efdd2de08b1ef57e2f9d5feb4c24c6ad (patch)
tree5622118e206d4a017b2efd7ef54d29d1d20f8242 /tools
parent1c3dff7c83e7a2258c545de8e52f1ecad392e635 (diff)
downloadrockbox-9413c2a4efdd2de08b1ef57e2f9d5feb4c24c6ad.tar.gz
rockbox-9413c2a4efdd2de08b1ef57e2f9d5feb4c24c6ad.zip
Add new make targets to build the manual as html.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10265 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
-rwxr-xr-xtools/configure37
1 files changed, 23 insertions, 14 deletions
diff --git a/tools/configure b/tools/configure
index 1b8e677a01..318a1c8dd0 100755
--- a/tools/configure
+++ b/tools/configure
@@ -1296,24 +1296,33 @@ bzip2: tar
1296gzip: tar 1296gzip: tar
1297 \$(SILENT)gzip -f9 rockbox.tar 1297 \$(SILENT)gzip -f9 rockbox.tar
1298 1298
1299manual: 1299manual: manual-pdf
1300 \$(SILENT)\$(MAKE) -C \$(MANUALDIR) OBJDIR=\$(BUILDDIR)/manual buildmanual 1300manual-pdf:
1301 \$(SILENT)\$(MAKE) -C \$(MANUALDIR) OBJDIR=\$(BUILDDIR)/manual manual-pdf
1302
1303manual-html:
1304 \$(SILENT)\$(MAKE) -C \$(MANUALDIR) OBJDIR=\$(BUILDDIR)/manual manual-html
1305
1306manual-zip:
1307 \$(SILENT)\$(MAKE) -C \$(MANUALDIR) OBJDIR=\$(BUILDDIR)/manual manual-zip
1301 1308
1302help: 1309help:
1303 @echo "A few helpful make targets" 1310 @echo "A few helpful make targets"
1304 @echo "" 1311 @echo ""
1305 @echo "all - builds a full Rockbox (default), including tools" 1312 @echo "all - builds a full Rockbox (default), including tools"
1306 @echo "clean - cleans a build directory (not tools)" 1313 @echo "clean - cleans a build directory (not tools)"
1307 @echo "veryclean - cleans the build and tools directories" 1314 @echo "veryclean - cleans the build and tools directories"
1308 @echo "manual - builds a manual" 1315 @echo "manual - builds a manual"
1309 @echo "fullzip - creates a rockbox.zip of your build with fonts" 1316 @echo "manual-html - HTML manual"
1310 @echo "zip - creates a rockbox.zip of your build (no fonts)" 1317 @echo "manual-zip - HTML manual (zipped)"
1311 @echo "gzip - creates a rockbox.tar.gz of your build (no fonts)" 1318 @echo "fullzip - creates a rockbox.zip of your build with fonts"
1312 @echo "bzip2 - creates a rockbox.tar.bz2 of your build (no fonts)" 1319 @echo "zip - creates a rockbox.zip of your build (no fonts)"
1313 @echo "7zip - creates a rockbox.7z of your build (no fonts)" 1320 @echo "gzip - creates a rockbox.tar.gz of your build (no fonts)"
1314 @echo "fontzip - creates rockbox-fonts.zip" 1321 @echo "bzip2 - creates a rockbox.tar.bz2 of your build (no fonts)"
1315 @echo "tools - builds the tools only" 1322 @echo "7zip - creates a rockbox.7z of your build (no fonts)"
1316 @echo "install - installs your build (for simulator builds only)" 1323 @echo "fontzip - creates rockbox-fonts.zip"
1324 @echo "tools - builds the tools only"
1325 @echo "install - installs your build (for simulator builds only)"
1317 1326
1318EOF 1327EOF
1319 1328