diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2008-03-02 17:05:00 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2008-03-02 17:05:00 +0000 |
| commit | 52e1f815994413aa6068b13367ca0d04d9246182 (patch) | |
| tree | ebae13e1b8e1931eac2faf7920ccbd6d4f0690d1 /apps/plugins/lib/Makefile | |
| parent | 1509faf618641a5dd1e8b33e0c1617dc521aa27c (diff) | |
| download | rockbox-52e1f815994413aa6068b13367ca0d04d9246182.zip rockbox-52e1f815994413aa6068b13367ca0d04d9246182.tar.gz rockbox-52e1f815994413aa6068b13367ca0d04d9246182.tar.bz2 rockbox-52e1f815994413aa6068b13367ca0d04d9246182.tar.xz | |
Greyscale library: Assembler optimised update for coldfire, ~73% speedup when using IRAM, ~35% speedup without IRAM. Slight optimisation for other targets as well.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16482 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/lib/Makefile')
| -rw-r--r-- | apps/plugins/lib/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/plugins/lib/Makefile b/apps/plugins/lib/Makefile index 39f1743..c75cca1 100644 --- a/apps/plugins/lib/Makefile +++ b/apps/plugins/lib/Makefile @@ -29,7 +29,8 @@ endif include $(TOOLSDIR)/makesrc.inc SOURCES = $(SRC) -OBJS := $(SRC:%.c=$(OBJDIR)/%.o) +OBJS2 := $(SRC:%.c=$(OBJDIR)/%.o) +OBJS = $(patsubst %.S, $(OBJDIR)/%.o, $(OBJS2)) DEPFILE = $(OBJDIR)/dep-pluginlib DIRS = . |