summaryrefslogtreecommitdiff
path: root/tools/configure
diff options
context:
space:
mode:
Diffstat (limited to 'tools/configure')
-rwxr-xr-xtools/configure11
1 files changed, 9 insertions, 2 deletions
diff --git a/tools/configure b/tools/configure
index 43974e8dc8..443ea9fbc6 100755
--- a/tools/configure
+++ b/tools/configure
@@ -2595,7 +2595,8 @@ help:
2595 @echo "mapzip - creates rockbox-maps.zip with all .map files" 2595 @echo "mapzip - creates rockbox-maps.zip with all .map files"
2596 @echo "tools - builds the tools only" 2596 @echo "tools - builds the tools only"
2597 @echo "voicetools - builds the voice tools only" 2597 @echo "voicetools - builds the voice tools only"
2598 @echo "install - installs your build (for simulator builds only)" 2598 @echo "install - installs your build (for simulator builds only, no fonts)"
2599 @echo "fullinstall - installs your build (for simulator builds only, with fonts)"
2599 2600
2600EOF 2601EOF
2601 2602
@@ -2604,8 +2605,14 @@ if [ "yes" = "$simulator" ]; then
2604 cat >> Makefile <<EOF 2605 cat >> Makefile <<EOF
2605 2606
2606install: 2607install:
2608 @echo "installing your build in your archos dir"
2609 \$(SILENT)for f in \`cat \$(BUILDDIR)/apps/features\`; do feat="\$\$feat:\$\$f" ; done; \\
2610 \$(TOOLSDIR)/buildzip.pl \$(VERBOSEOPT) -t \"\$(MODELNAME)\$\$feat\" -i \"\$(TARGET_ID)\" -s -r "\$(ROOTDIR)" -f 0 \$(TARGET) \$(BINARY)
2611
2612fullinstall:
2607 @echo "installing a full setup in your archos dir" 2613 @echo "installing a full setup in your archos dir"
2608 @(\$(MAKE) fullzip && cd archos && unzip -oq ../rockbox-full.zip) 2614 \$(SILENT)for f in \`cat \$(BUILDDIR)/apps/features\`; do feat="\$\$feat:\$\$f" ; done; \\
2615 \$(TOOLSDIR)/buildzip.pl \$(VERBOSEOPT) -t \"\$(MODELNAME)\$\$feat\" -i \"\$(TARGET_ID)\" -s -r "\$(ROOTDIR)" -f 2 \$(TARGET) \$(BINARY)
2609EOF 2616EOF
2610 2617
2611fi 2618fi