summaryrefslogtreecommitdiff
path: root/tools/configure
diff options
context:
space:
mode:
Diffstat (limited to 'tools/configure')
-rwxr-xr-xtools/configure14
1 files changed, 11 insertions, 3 deletions
diff --git a/tools/configure b/tools/configure
index dbb008e44d..1842be71ab 100755
--- a/tools/configure
+++ b/tools/configure
@@ -1526,6 +1526,8 @@ sed > Makefile \
1526 -e "s,@MEMORY@,${memory},g" \ 1526 -e "s,@MEMORY@,${memory},g" \
1527 -e "s,@TARGET_ID@,${target_id},g" \ 1527 -e "s,@TARGET_ID@,${target_id},g" \
1528 -e "s,@TARGET@,${target},g" \ 1528 -e "s,@TARGET@,${target},g" \
1529 -e "s,@CPU@,${t_cpu},g" \
1530 -e "s,@MANUFACTURER@,${t_manufacturer},g" \
1529 -e "s,@ARCHOS@,${archos},g" \ 1531 -e "s,@ARCHOS@,${archos},g" \
1530 -e "s,@LANGUAGE@,${language},g" \ 1532 -e "s,@LANGUAGE@,${language},g" \
1531 -e "s,@PWD@,${pwd},g" \ 1533 -e "s,@PWD@,${pwd},g" \
@@ -1596,6 +1598,8 @@ export ARCHOSROM=@ARCHOSROM@
1596export FLASHFILE=@FLASHFILE@ 1598export FLASHFILE=@FLASHFILE@
1597export TARGET_ID=@TARGET_ID@ 1599export TARGET_ID=@TARGET_ID@
1598export TARGET=@TARGET@ 1600export TARGET=@TARGET@
1601export CPU=@CPU@
1602export MANUFACTURER=@MANUFACTURER@
1599export OBJDIR=@PWD@ 1603export OBJDIR=@PWD@
1600export BUILDDIR=@PWD@ 1604export BUILDDIR=@PWD@
1601export LANGUAGE=@LANGUAGE@ 1605export LANGUAGE=@LANGUAGE@
@@ -1638,14 +1642,18 @@ export MANUALDEV=@MANUALDEV@
1638# Do not print "Entering directory ..." 1642# Do not print "Entering directory ..."
1639MAKEFLAGS += --no-print-directory 1643MAKEFLAGS += --no-print-directory
1640 1644
1641.PHONY: all clean tags zip tools manual 1645.PHONY: all clean tags zip tools manual bin build info
1642 1646
1643all: tools 1647all: build info
1648
1649info:
1650 \$(SILENT)\$(TOOLSDIR)/mkinfo.pl \$(BUILDDIR)/rockbox-info.txt
1651
1652build: tools
1644 @SIMUL1@ 1653 @SIMUL1@
1645 @SIMUL2@ 1654 @SIMUL2@
1646 \$(SILENT)\$(MAKE) -C \$(FIRMDIR) OBJDIR=\$(BUILDDIR)/firmware 1655 \$(SILENT)\$(MAKE) -C \$(FIRMDIR) OBJDIR=\$(BUILDDIR)/firmware
1647 \$(SILENT)\$(MAKE) -C \$(APPSDIR) OBJDIR=\$(BUILDDIR)/@APPS@ 1656 \$(SILENT)\$(MAKE) -C \$(APPSDIR) OBJDIR=\$(BUILDDIR)/@APPS@
1648 \$(SILENT)\$(TOOLSDIR)/mkinfo.pl \$(BUILDDIR)/rockbox-info.txt
1649 1657
1650bin: tools 1658bin: tools
1651 @SIMUL1@ 1659 @SIMUL1@