blob: 8f16fbe424f464ae40e5289c8cdaa3c564f0bb31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
MODULE := engines/tsage
MODULE_OBJS := \
converse.o \
core.o \
debugger.o \
detection.o \
dialogs.o \
events.o \
globals.o \
graphics.o \
resources.o \
ringworld_logic.o \
ringworld_scenes1.o \
ringworld_scenes2.o \
ringworld_scenes3.o \
ringworld_scenes4.o \
ringworld_scenes5.o \
saveload.o \
scenes.o \
sound.o \
staticres.o \
tsage.o
# This module can be built as a plugin
ifdef BUILD_PLUGINS
PLUGIN := 1
endif
# Include common rules
include $(srcdir)/rules.mk
|