diff options
| -rwxr-xr-x | configure | 47 | ||||
| -rw-r--r-- | engines/configure.engines | 2 | 
2 files changed, 48 insertions, 1 deletions
@@ -750,6 +750,7 @@ get_subengines_build_string() {  }  # Engine specific build strings +# TODO: Clean this up (and specify these base strings in configure.engines?)  get_scumm_build_string() {  	if test `get_engine_build $1` != no ; then  		if test $2 != no -a "$3" != wip ; then @@ -768,6 +769,52 @@ get_saga_build_string() {  	fi  } +get_agos_build_string() { +	if test `get_engine_build $1` != no ; then +		if test $2 != no -a "$3" != wip; then +			base="[AGOS 1 games]" +		fi +		get_subengines_build_string $1 $2 "$base" $3 +	fi +} + +get_groovie_build_string() { +	if test `get_engine_build $1` != no ; then +		if test $2 != no -a "$3" != wip; then +			base="[7th Guest]" +		fi +		get_subengines_build_string $1 $2 "$base" $3 +	fi +} + +get_kyra_build_string() { +	if test `get_engine_build $1` != no ; then +		if test $2 != no -a "$3" != wip; then +			base="[Legend of Kyrandia 1-3]" +		fi +		get_subengines_build_string $1 $2 "$base" $3 +	fi +} + +get_sci_build_string() { +	if test `get_engine_build $1` != no ; then +		if test $2 != no -a "$3" != wip; then +			base="[SCI 0-1.1 games]" +		fi +		get_subengines_build_string $1 $2 "$base" $3 +	fi +} + +get_mohawk_build_string() { +	if test `get_engine_build $1` != no ; then +		if test $2 != no -a "$3" != wip; then +			base="[Living Books]" +		fi +		get_subengines_build_string $1 $2 "$base" $3 +	fi +} + +  #  # Greet user  # diff --git a/engines/configure.engines b/engines/configure.engines index 81cf1766f3..f2feb55080 100644 --- a/engines/configure.engines +++ b/engines/configure.engines @@ -16,7 +16,7 @@ add_engine gob "Gobli*ns" yes  add_engine groovie "Groovie" yes "groovie2"  add_engine groovie2 "Groovie 2 games" no  add_engine hugo "Hugo Trilogy" yes -add_engine kyra "Legend of Kyrandia" yes "lol eob" +add_engine kyra "Kyra" yes "lol eob"  add_engine lol "Lands of Lore" yes  add_engine eob "Eye of the Beholder" no  add_engine lastexpress "The Last Express" no  | 
