summaryrefslogtreecommitdiff
path: root/firmware/Makefile
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2002-08-13 23:13:01 +0000
committerBjörn Stenberg <bjorn@haxx.se>2002-08-13 23:13:01 +0000
commitebb14ca5f944df76986dbb9f8ec16bae1fbd20a7 (patch)
treebe18c2969fb2420ccbe4adddfd13a9b49b253a49 /firmware/Makefile
parent509b42561686174f09b56b16e622f24d2efad774 (diff)
downloadrockbox-ebb14ca5f944df76986dbb9f8ec16bae1fbd20a7.tar.gz
rockbox-ebb14ca5f944df76986dbb9f8ec16bae1fbd20a7.zip
Gained about 128 KB buffer space by removing malloc() and the heap
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1726 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/Makefile')
-rw-r--r--firmware/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/Makefile b/firmware/Makefile
index eb173848f3..f3de26b48a 100644
--- a/firmware/Makefile
+++ b/firmware/Makefile
@@ -33,7 +33,7 @@ else
33CFLAGS += -fomit-frame-pointer -fschedule-insns 33CFLAGS += -fomit-frame-pointer -fschedule-insns
34endif 34endif
35 35
36SRC := $(wildcard drivers/*.c common/*.c malloc/*.c *.c) 36SRC := $(wildcard drivers/*.c common/*.c *.c)
37 37
38OBJS := $(SRC:%.c=$(OBJDIR)/%.o) $(OBJDIR)/crt0.o 38OBJS := $(SRC:%.c=$(OBJDIR)/%.o) $(OBJDIR)/crt0.o
39DEPS:=.deps 39DEPS:=.deps