summaryrefslogtreecommitdiff
path: root/apps/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'apps/Makefile')
-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
31# Check if this is a kind of Recorder 31# Check if this is a kind of Recorder
32ANYREC = $(findstring RECORDER, $(TARGET)) 32ANYREC = $(findstring RECORDER, $(TARGET))
33 33
34# scramble tool
35TOOL = scramble
36
34ifndef MEM 37ifndef MEM
35 # if MEM is not set, assume 2MB 38 # if MEM is not set, assume 2MB
36 MEM=2 39 MEM=2
@@ -56,19 +59,17 @@ ifeq ($(ANYREC), RECORDER)
56 SRC += $(wildcard recorder/*.c) 59 SRC += $(wildcard recorder/*.c)
57 CFLAGS += -Irecorder 60 CFLAGS += -Irecorder
58 OUTNAME = ajbrec.ajz 61 OUTNAME = ajbrec.ajz
59 TOOL = scramble
60else 62else
61ifeq ($(TARGET), -DARCHOS_PLAYER) 63ifeq ($(TARGET), -DARCHOS_PLAYER)
62 SRC += $(wildcard player/*.c) 64 SRC += $(wildcard player/*.c)
63 CFLAGS += -Iplayer 65 CFLAGS += -Iplayer
64 OUTNAME = archos.mod 66 OUTNAME = archos.mod
65 TOOL = scramble
66else 67else
67# some kind of Neo 68# some kind of Neo
68 SRC += $(wildcard neo/*.c) 69 SRC += $(wildcard neo/*.c)
69 CFLAGS += -Ineo 70 CFLAGS += -Ineo
70 OUTNAME = Rockbox.bin 71 OUTNAME = Rockbox.bin
71 TOOL = mkneofile 72 TOOL_OPT = -neo
72endif 73endif
73endif 74endif
74 75