summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorDominik Riebeling <Dominik.Riebeling@gmail.com>2006-10-23 18:09:38 +0000
committerDominik Riebeling <Dominik.Riebeling@gmail.com>2006-10-23 18:09:38 +0000
commitabac7397674b255ecac7fd65b98bcabaf65f68c8 (patch)
tree58e09e73b6aa1f3ed4f82dcf3d4a8b62ef5ad5cf /tools
parent97f2af25532846f5dc72f6d3265cd9f5ff333610 (diff)
downloadrockbox-abac7397674b255ecac7fd65b98bcabaf65f68c8.zip
rockbox-abac7397674b255ecac7fd65b98bcabaf65f68c8.tar.gz
rockbox-abac7397674b255ecac7fd65b98bcabaf65f68c8.tar.bz2
rockbox-abac7397674b255ecac7fd65b98bcabaf65f68c8.tar.xz
Manual Makefile tweaks:
- remove html output folder on "make clean" - fix "make manual" that was broken for some targets (e.g. h100) when configured for normal / sim build - add manual-txt target to generate a plain text version. Requires links. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11319 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
-rwxr-xr-xtools/configure47
1 files changed, 28 insertions, 19 deletions
diff --git a/tools/configure b/tools/configure
index f9ef980..3d45788 100755
--- a/tools/configure
+++ b/tools/configure
@@ -1191,22 +1191,6 @@ fi
toolsdir=$firmdir;
toolset='';
apps="manual"
- case $archos in
- fmrecorder)
- archos="recorderv2fm"
- ;;
- recorderv2)
- archos="recorderv2fm"
- ;;
- h1??)
- archos="h1xx"
- ;;
- ipodmini2g)
- archos="ipodmini"
- ;;
- *)
- ;;
- esac
echo "Manual build selected"
;;
*)
@@ -1215,6 +1199,24 @@ fi
;;
esac
+ # to be able running "make manual" from non-manual configuration
+ case $archos in
+ fmrecorder)
+ manualdev="recorderv2fm"
+ ;;
+ recorderv2)
+ manualdev="recorderv2fm"
+ ;;
+ h1??)
+ manualdev="h1xx"
+ ;;
+ ipodmini2g)
+ manualdev="ipodmini"
+ ;;
+ *)
+ manualdev=$archos
+ ;;
+ esac
if [ -z "$debug" ]; then
GCCOPTS="$GCCOPTS $GCCOPTIMIZE"
@@ -1409,6 +1411,7 @@ sed > Makefile \
-e "s,@TOOLSET@,${toolset},g" \
-e "${simmagic1}" \
-e "${simmagic2}" \
+ -e "s,@MANUALDEV@,${manualdev},g" \
<<EOF
## Automaticly generated. http://www.rockbox.org/
@@ -1467,6 +1470,7 @@ export LDOPTS=@LDOPTS@
export GCCVER=@GCCVER@
export GCCNUM=@GCCNUM@
export UNAME=@UNAME@
+export MANUALDEV=@MANUALDEV@
# Do not print "Entering directory ..."
MAKEFLAGS += --no-print-directory
@@ -1494,7 +1498,8 @@ clean:
\$(SILENT)echo Cleaning build directory
\$(SILENT)rm -rf rockbox.zip TAGS @APPS@ firmware comsim sim lang.[ch]\
manual *.pdf *.a credits.raw @OUTPUT@ bitmaps pluginbitmaps \
- @ARCHOSROM@ @FLASHFILE@ UI256.bmp rockbox-full.zip
+ @ARCHOSROM@ @FLASHFILE@ UI256.bmp rockbox-full.zip \
+ html txt rockbox-manual*.zip
tools:
\$(SILENT)\$(MAKE) -C \$(TOOLSDIR) CC=\$(HOSTCC) @TOOLSET@
@@ -1534,10 +1539,13 @@ gzip: tar
manual: manual-pdf
manual-pdf:
\$(SILENT)\$(MAKE) -C \$(MANUALDIR) OBJDIR=\$(BUILDDIR)/manual manual-pdf
-
manual-html:
\$(SILENT)\$(MAKE) -C \$(MANUALDIR) OBJDIR=\$(BUILDDIR)/manual manual-html
-
+manual-zhtml: manual-zip
+manual-txt:
+ \$(SILENT)\$(MAKE) -C \$(MANUALDIR) OBJDIR=\$(BUILDDIR)/manual manual-txt
+manual-ztxt:
+ \$(SILENT)\$(MAKE) -C \$(MANUALDIR) OBJDIR=\$(BUILDDIR)/manual manual-txt-zip
manual-zip:
\$(SILENT)\$(MAKE) -C \$(MANUALDIR) OBJDIR=\$(BUILDDIR)/manual manual-zip
@@ -1551,6 +1559,7 @@ help:
@echo "manual - builds a manual"
@echo "manual-html - HTML manual"
@echo "manual-zip - HTML manual (zipped)"
+ @echo "manual-txt - txt manual"
@echo "fullzip - creates a rockbox.zip of your build with fonts"
@echo "zip - creates a rockbox.zip of your build (no fonts)"
@echo "gzip - creates a rockbox.tar.gz of your build (no fonts)"