diff options
author | Jörg Hohensohn <hohensoh@rockbox.org> | 2004-03-18 22:06:36 +0000 |
---|---|---|
committer | Jörg Hohensohn <hohensoh@rockbox.org> | 2004-03-18 22:06:36 +0000 |
commit | b61cf76aba768513ab2a1fa9e7cc80f59dbce02f (patch) | |
tree | db81683f1743eab4a04f28b4b604aa1bdb297a4b /firmware/Makefile | |
parent | c40c069a67a41a85eb2525561de65b11d240d85e (diff) |
patch #917153: faster memset()/memcpy()
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4406 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/Makefile')
-rw-r--r-- | firmware/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/firmware/Makefile b/firmware/Makefile index 93ee38ac78..38bcd4cc86 100644 --- a/firmware/Makefile +++ b/firmware/Makefile @@ -25,16 +25,17 @@ endif ifdef DEBUG CFLAGS += -g -DDEBUG else -CFLAGS += -fomit-frame-pointer -fschedule-insns +CFLAGS += -fomit-frame-pointer -fschedule-insns endif SRC := $(wildcard drivers/*.c common/*.c *.c) +SRC_S := $(wildcard drivers/*.S common/*.S *.S) -OBJS := $(SRC:%.c=$(OBJDIR)/%.o) $(OBJDIR)/crt0.o $(OBJDIR)/bitswap.o $(OBJDIR)/descramble.o +OBJS := $(SRC:%.c=$(OBJDIR)/%.o) $(SRC_S:%.S=$(OBJDIR)/%.o) DEPS:=.deps DEPDIRS:=$(DEPS) $(DEPS)/drivers $(DEPS)/common $(DEPS)/malloc -DIRS = $(subst $(DEPS),".",$(DEPDIRS)) +DIRS = $(subst $(DEPS),".",$(DEPDIRS)) OUTPUT = $(OBJDIR)/librockbox.a |