aboutsummaryrefslogtreecommitdiff
path: root/devtools/create_supernova/module.mk
diff options
context:
space:
mode:
authorThierry Crozat2017-09-26 23:05:46 +0100
committerThierry Crozat2018-01-23 02:15:32 +0000
commitf9310e11d8c01c20e32251678a7046e8c2e7b131 (patch)
tree3a480520d961a08b7d6110f47f8667f444da5430 /devtools/create_supernova/module.mk
parent65d30cf720db9d3395ca5d3fa002a228c0549a80 (diff)
downloadscummvm-rg350-f9310e11d8c01c20e32251678a7046e8c2e7b131.tar.gz
scummvm-rg350-f9310e11d8c01c20e32251678a7046e8c2e7b131.tar.bz2
scummvm-rg350-f9310e11d8c01c20e32251678a7046e8c2e7b131.zip
SUPERNOVA: Add tool skeleton to generate engine data file
The tool is only a skeleton at this point. Most of the logic is there but it is missing the data to write the German strings and it is missing the logic to write the translated strings. This means that currently the only data written are bitmap images.
Diffstat (limited to 'devtools/create_supernova/module.mk')
-rw-r--r--devtools/create_supernova/module.mk11
1 files changed, 11 insertions, 0 deletions
diff --git a/devtools/create_supernova/module.mk b/devtools/create_supernova/module.mk
new file mode 100644
index 0000000000..9591233168
--- /dev/null
+++ b/devtools/create_supernova/module.mk
@@ -0,0 +1,11 @@
+MODULE := devtools/create_supernova
+
+MODULE_OBJS := \
+ file.o \
+ create_supernova.o
+
+# Set the name of the executable
+TOOL_EXECUTABLE := create_supernova
+
+# Include common rules
+include $(srcdir)/rules.mk