# List of all config includes
INCS = apple2.inc \
+ apple2enh.inc \
atari.inc \
atmos.inc \
bbc.inc \
apple2.inc: cfg/apple2.cfg
@$(CVT) $< $@ CfgApple2
+
+# The apple2enh target uses the same config as the apple2
+apple2enh.inc: cfg/apple2.cfg
+ @$(CVT) $< $@ CfgApple2Enh
atari.inc: cfg/atari.cfg
@$(CVT) $< $@ CfgAtari
/* Actual target configurations, converted into C strings by a perl script */
#include "apple2.inc"
+#include "apple2enh.inc"
#include "atari.inc"
#include "atmos.inc"
#include "bbc.inc"
/*****************************************************************************/
-
+
/* Target configurations for all systems */
const TargetDesc Targets [TGT_COUNT] = {
{ BINFMT_BINARY, CfgNone },
{ BINFMT_BINARY, CfgPET },
{ BINFMT_BINARY, CfgBBC },
{ BINFMT_BINARY, CfgApple2 },
+ { BINFMT_BINARY, CfgApple2Enh },
{ BINFMT_BINARY, CfgGeos },
{ BINFMT_O65, CfgLunix },
{ BINFMT_BINARY, CfgAtmos },