mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-18 15:48:48 +00:00
102969f820
svn-id: r24617
21 lines
282 B
Makefile
21 lines
282 B
Makefile
MODULE := engines/touche
|
|
|
|
MODULE_OBJS := \
|
|
graphics.o \
|
|
midi.o \
|
|
plugin.o \
|
|
opcodes.o \
|
|
resource.o \
|
|
saveload.o \
|
|
staticres.o \
|
|
touche.o \
|
|
ui.o
|
|
|
|
# This module can be built as a plugin
|
|
ifdef BUILD_PLUGINS
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|