summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-12-12 14:07:28 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-12-12 14:07:28 +0000
commit0115af21d9badaab2fdb7e2404bea69a0504e4b0 (patch)
treed776d31422a5c978f9c9db5f046781c2c902f0f3 /apps
parentd0f59105348bfb2d29596ff65b41a3aaeea86432 (diff)
removed the neo-specific scramble-tool and made it an option to scramble
instead, and made the makefile use this git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4140 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/apps/Makefile b/apps/Makefile
index bb7625b1c2..2fc9d97adb 100644
--- a/apps/Makefile
+++ b/apps/Makefile
@@ -31,6 +31,9 @@ AFLAGS += -small -relax
# Check if this is a kind of Recorder
ANYREC = $(findstring RECORDER, $(TARGET))
+# scramble tool
+TOOL = scramble
+
ifndef MEM
# if MEM is not set, assume 2MB
MEM=2
@@ -56,19 +59,17 @@ ifeq ($(ANYREC), RECORDER)
SRC += $(wildcard recorder/*.c)
CFLAGS += -Irecorder
OUTNAME = ajbrec.ajz
- TOOL = scramble
else
ifeq ($(TARGET), -DARCHOS_PLAYER)
SRC += $(wildcard player/*.c)
CFLAGS += -Iplayer
OUTNAME = archos.mod
- TOOL = scramble
else
# some kind of Neo
SRC += $(wildcard neo/*.c)
CFLAGS += -Ineo
OUTNAME = Rockbox.bin
- TOOL = mkneofile
+ TOOL_OPT = -neo
endif
endif