summaryrefslogtreecommitdiffstats
path: root/common/Makefile
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2011-04-07 17:25:07 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2011-04-11 15:57:51 +0200
commit2a3762495056381e1ef1809b482b670fcd45b6d5 (patch)
treef5ea3bf85ed5bf81baae0c0f79514195bea9010e /common/Makefile
parent4bfc4b44582670182c1519f931cbe0b0efec616e (diff)
downloadbarebox-2a3762495056381e1ef1809b482b670fcd45b6d5.tar.gz
barebox-2a3762495056381e1ef1809b482b670fcd45b6d5.tar.xz
malloc: put common memory functions to seperate file
These functions are needed independently of the specific malloc implementation, so move them out. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'common/Makefile')
-rw-r--r--common/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/common/Makefile b/common/Makefile
index 6a044601c4..aa2c2220a6 100644
--- a/common/Makefile
+++ b/common/Makefile
@@ -8,6 +8,7 @@ obj-$(CONFIG_AUTO_COMPLETE) += complete.o
obj-$(CONFIG_POLLER) += poller.o
obj-$(CONFIG_BLOCK) += block.o
+obj-y += memory.o
obj-y += dlmalloc.o
obj-y += clock.o
obj-y += version.o