lemoncake

rbtree based memory allocator
git clone git://git.2f30.org/lemoncake
Log | Files | Refs | README | LICENSE

commit 9621099b7448662277099edbb6a9a5b9385110e0
parent 9a578a877de7336db8a5e12f616196962101bb28
Author: sin <sin@2f30.org>
Date:   Sun,  4 Aug 2013 17:15:32 +0100

Use ${OBJ} instead of lemoncake.o

Diffstat:
MMakefile | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile @@ -20,9 +20,9 @@ options: ${OBJ}: config.mk -lemoncake.so: lemoncake.o +lemoncake.so: ${OBJ} @echo CC -o $@ - @${CC} -o $@ lemoncake.o ${LDFLAGS} + @${CC} -o $@ ${OBJ} ${LDFLAGS} clean: @echo cleaning