mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-13 12:39:56 +00:00
f4339ff6c4
that many STL implementations have a class hash_map next to class map, too) - Changed some static File class member vars to be normal static variables, in yet another attempt to reduce header dependencies (in this case on hashmap.h) svn-id: r21473
23 lines
274 B
Makefile
23 lines
274 B
Makefile
MODULE := common
|
|
|
|
MODULE_OBJS := \
|
|
config-file.o \
|
|
config-manager.o \
|
|
file.o \
|
|
hashmap.o \
|
|
md5.o \
|
|
mutex.o \
|
|
str.o \
|
|
stream.o \
|
|
timer.o \
|
|
util.o \
|
|
savefile.o \
|
|
system.o \
|
|
unzip.o
|
|
|
|
MODULE_DIRS += \
|
|
common
|
|
|
|
# Include common rules
|
|
include $(srcdir)/common.rules
|