summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-06-17 06:49:29 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-06-17 06:49:29 +0000
commit0530349c1f0c118bfb72e378ae88d85ce88fc5bf (patch)
treeeed50375a33a54c8dbd0aa78dfaf6a2da3cc2beb /apps
parent64e268a397a33954aa211bcb865020fa219a71ec (diff)
downloadrockbox-0530349c1f0c118bfb72e378ae88d85ce88fc5bf.tar.gz
rockbox-0530349c1f0c118bfb72e378ae88d85ce88fc5bf.zip
Player builds now use a separate linker control file
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1028 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/Makefile b/apps/Makefile
index 861a0d6651..1ed78d544b 100644
--- a/apps/Makefile
+++ b/apps/Makefile
@@ -33,7 +33,11 @@ ifdef DEBUG
CFLAGS += -g
LDS := $(FIRMWARE)/gdb.lds
else
+ifeq ($(TARGET),-DARCHOS_RECORDER)
LDS := $(FIRMWARE)/app.lds
+else
+ LDS := $(FIRMWARE)/player.lds
+endif
endif
SRC := $(wildcard *.c)