diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2009-02-09 18:31:56 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2009-02-09 18:31:56 +0000 |
| commit | dca7d391f1f57085207def0321b89b18e6307c1b (patch) | |
| tree | ca7f341881eaea3020a085873b6d00cae731b11d /apps/codecs/codecs.make | |
| parent | 1f3d667b1a8d4a11d2745ce22b89566265b48142 (diff) | |
| download | rockbox-dca7d391f1f57085207def0321b89b18e6307c1b.zip rockbox-dca7d391f1f57085207def0321b89b18e6307c1b.tar.gz rockbox-dca7d391f1f57085207def0321b89b18e6307c1b.tar.bz2 rockbox-dca7d391f1f57085207def0321b89b18e6307c1b.tar.xz | |
make sure plugin.lds is not processed when building sims since it isn't used for anything then!
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19957 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/codecs.make')
| -rw-r--r-- | apps/codecs/codecs.make | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/apps/codecs/codecs.make b/apps/codecs/codecs.make index 8bfa53c..e8ecc3d 100644 --- a/apps/codecs/codecs.make +++ b/apps/codecs/codecs.make @@ -38,8 +38,11 @@ include $(APPSDIR)/codecs/libwma/libwma.make CODECFLAGS = $(CFLAGS) -I$(APPSDIR)/codecs -I$(APPSDIR)/codecs/lib \ -DCODEC -CODEC_LDS := $(APPSDIR)/plugins/plugin.lds # codecs and plugins use same file -CODECLINK_LDS := $(CODECDIR)/codec.link +ifndef SIMVER + CODEC_LDS := $(APPSDIR)/plugins/plugin.lds # codecs and plugins use same file + CODECLINK_LDS := $(CODECDIR)/codec.link +endif + CODEC_CRT0 := $(CODECDIR)/codec_crt0.o CODECLIBS := $(DEMACLIB) $(A52LIB) $(ALACLIB) $(ASAPLIB) \ |