scummvm/common/module.mk
Bertrand Augereau 411a588850 Introduction of a fixed size memory pool with a typical free list implementation
+ : amortized O(1) allocation, O(1) deallocation, less overhead per allocation
- : unused memory is not reclaimed until death or manual invocation of a function

svn-id: r31320
2008-03-30 05:42:39 +00:00

22 lines
274 B
Makefile

MODULE := common
MODULE_OBJS := \
advancedDetector.o \
config-file.o \
config-manager.o \
file.o \
fs.o \
hashmap.o \
memorypool.o \
md5.o \
mutex.o \
str.o \
stream.o \
util.o \
system.o \
unzip.o \
zlib.o
# Include common rules
include $(srcdir)/rules.mk