summaryrefslogtreecommitdiff
path: root/apps/Makefile
diff options
context:
space:
mode:
authorKarl Kurbjun <kkurbjun@gmail.com>2008-03-13 03:48:23 +0000
committerKarl Kurbjun <kkurbjun@gmail.com>2008-03-13 03:48:23 +0000
commitef62d6891a4def12d43b7a562f165eeb93816461 (patch)
tree3c9e8720c846075568d2fe1157f8e3b6b48103db /apps/Makefile
parent2b5f9aec646aceaf24b243e38e1de316e1bc3475 (diff)
downloadrockbox-ef62d6891a4def12d43b7a562f165eeb93816461.tar.gz
rockbox-ef62d6891a4def12d43b7a562f165eeb93816461.zip
Split up app.lds to the respective target directories. The portalplayer devices replicate app.lds since their target tree doesn't follow a syntax typical to the newer arm targets - the portalplayers could be cleaned up further. boot.lds and plugin.lds still need to be cleaned up.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16651 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/Makefile')
-rw-r--r--apps/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/Makefile b/apps/Makefile
index eee9c034dd..2c7f59012a 100644
--- a/apps/Makefile
+++ b/apps/Makefile
@@ -11,7 +11,9 @@ INCLUDES= $(TARGET_INC) -I$(FIRMDIR)/include -I$(FIRMDIR)/export -I. -I$(BUILDDI
11 -I$(BUILDDIR)/bitmaps -I$(OBJDIR) 11 -I$(BUILDDIR)/bitmaps -I$(OBJDIR)
12 12
13DEPFILE = $(OBJDIR)/dep-apps 13DEPFILE = $(OBJDIR)/dep-apps
14LDS := $(FIRMDIR)/app.lds 14
15LDS := $(FIRMDIR)/target/$(CPU)/$(MANUFACTURER)/app.lds
16
15ROMLDS := $(FIRMDIR)/rom.lds 17ROMLDS := $(FIRMDIR)/rom.lds
16 18
17ifdef ENABLEDPLUGINS 19ifdef ENABLEDPLUGINS