diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2002-06-17 06:49:29 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2002-06-17 06:49:29 +0000 |
| commit | 0530349c1f0c118bfb72e378ae88d85ce88fc5bf (patch) | |
| tree | eed50375a33a54c8dbd0aa78dfaf6a2da3cc2beb | |
| parent | 64e268a397a33954aa211bcb865020fa219a71ec (diff) | |
| download | rockbox-0530349c1f0c118bfb72e378ae88d85ce88fc5bf.zip rockbox-0530349c1f0c118bfb72e378ae88d85ce88fc5bf.tar.gz rockbox-0530349c1f0c118bfb72e378ae88d85ce88fc5bf.tar.bz2 rockbox-0530349c1f0c118bfb72e378ae88d85ce88fc5bf.tar.xz | |
Player builds now use a separate linker control file
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1028 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/Makefile b/apps/Makefile index 861a0d6..1ed78d5 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) |