mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-16 14:50:17 +00:00
411a588850
+ : 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
22 lines
274 B
Makefile
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
|