mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-22 18:02:05 +00:00
d01594594e
- changed Rect to derive from Shape and added Polygon class (also derived from Shape) - added ImageMap class that encapsulates generalised functionality of image maps - skeletal classes for VirtualKeyboard and VirtualKeyboardParser svn-id: r32880
26 lines
327 B
Makefile
26 lines
327 B
Makefile
MODULE := common
|
|
|
|
MODULE_OBJS := \
|
|
advancedDetector.o \
|
|
config-file.o \
|
|
config-manager.o \
|
|
file.o \
|
|
fs.o \
|
|
imageMap.o \
|
|
hashmap.o \
|
|
memorypool.o \
|
|
md5.o \
|
|
mutex.o \
|
|
polygon.o \
|
|
str.o \
|
|
stream.o \
|
|
util.o \
|
|
system.o \
|
|
unarj.o \
|
|
unzip.o \
|
|
xmlparser.o \
|
|
zlib.o
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|