HDB: Add module.mk and configure.engine

This commit is contained in:
Nipun Garg 2019-03-11 01:05:53 +05:30 committed by Eugene Sandulenko
parent dde41f1432
commit 8dbc02f71d
2 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,3 @@
# This file is included from the main "configure" script
# add_engine [name] [desc] [build-by-default] [subengines] [base games] [deps]
add_engine hdb "Hyperspace Delivery Boy" yes

13
engines/hdb/module.mk Normal file
View File

@ -0,0 +1,13 @@
MODULE := engines/hdb
MODULE_OBJS := \
detection.o \
hdb.o
# This module can be built as a plugin
ifeq ($(ENABLE_HDB), DYNAMIC_PLUGIN)
PLUGIN := 1
endif
# Include common rules
include $(srcdir)/rules.mk