Mercurial > hg > early-roguelike
changeset 156:3e1146666ae5
arogue7, xrogue: begin using autoconf.
File locations can be customized via './configure'. 'make install'
does not work yet. Options for wizard mode and load checks may not do
what is intended.
Fun fact: there's an enlightening epigraph in the introduction to the
autoconf manual.
author | John "Elwin" Edwards |
---|---|
date | Thu, 04 Jun 2015 10:41:39 -0400 |
parents | 1af259ac4ed2 |
children | 5238b835d661 |
files | arogue7/Makefile arogue7/Makefile.in arogue7/acinclude.m4 arogue7/configure.ac arogue7/install-sh arogue7/mach_dep.h arogue7/rogue.h xrogue/Makefile xrogue/Makefile.in xrogue/acinclude.m4 xrogue/configure.ac xrogue/install-sh xrogue/mach_dep.h xrogue/rogue.h |
diffstat | 14 files changed, 1926 insertions(+), 321 deletions(-) [+] |
line wrap: on
line diff
--- a/arogue7/Makefile Fri May 29 17:34:04 2015 -0400 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,193 +0,0 @@ -# -# Makefile for rogue -# -# Advanced Rogue -# Copyright (C) 1984, 1985, 1986 Michael Morgan, Ken Dalka and AT&T -# All rights reserved. -# -# Based on "Rogue: Exploring the Dungeons of Doom" -# Copyright (C) 1980, 1981 Michael Toy, Ken Arnold and Glenn Wichman -# All rights reserved. -# -# See the file LICENSE.TXT for full copyright and licensing information. -# - -# -# Makefile for rogue -# - - -DISTNAME=arogue7.7.1 -PROGRAM=arogue77 - -O=o - -HDRS= rogue.h mach_dep.h network.h - -OBJS1 = vers.$(O) actions.$(O) chase.$(O) command.$(O) daemon.$(O) \ - daemons.$(O) eat.$(O) effects.$(O) encumb.$(O) fight.$(O) init.$(O) \ - io.$(O) list.$(O) main.$(O) maze.$(O) mdport.$(O) misc.$(O) \ - monsters.$(O) -OBJS2 = move.$(O) new_level.$(O) options.$(O) outside.$(O) pack.$(O) \ - passages.$(O) player.$(O) potions.$(O) rings.$(O) rip.$(O) rogue.$(O) \ - rooms.$(O) save.$(O) scrolls.$(O) state.$(O) sticks.$(O) things.$(O) \ - trader.$(O) util.$(O) weapons.$(O) wear.$(O) wizard.$(O) xcrypt.$(O) -OBJS = $(OBJS1) $(OBJS2) - -CFILES= vers.c actions.c chase.c command.c daemon.c \ - daemons.c eat.c effects.c encumb.c fight.c init.c \ - io.c list.c main.c maze.c mdport.c misc.c monsters.c \ - move.c new_level.c options.c outside.c pack.c \ - passages.c player.c potions.c rings.c rip.c rogue.c \ - rooms.c save.c scrolls.c state.c sticks.c things.c \ - trader.c util.c weapons.c wear.c wizard.c xcrypt.c -MISC_C= -DOCSRC= aguide.mm -DOCS = $(PROGRAM).doc $(PROGRAM).html -MISC = Makefile $(MISC_C) LICENSE.TXT $(PROGRAM).sln $(PROGRAM).vcproj $(DOCS)\ - $(DOCSRC) - -CC = gcc -ROPTS = -COPTS = -O3 -CFLAGS= $(COPTS) $(ROPTS) -LIBS = -lcurses -RM = rm -f - -.SUFFIXES: .obj - -.c.obj: - $(CC) $(CFLAGS) /c $*.c - -$(PROGRAM): $(HDRS) $(OBJS) - $(CC) $(CFLAGS) $(LDFLAGS) $(OBJS) $(LIBS) -o $@ - -clean: - $(RM) $(OBJS1) - $(RM) $(OBJS2) - $(RM) core a.exe a.out a.exe.stackdump $(PROGRAM) $(PROGRAM).exe $(PROGRAM).lck - $(RM) $(PROGRAM).tar $(PROGRAM).tar.gz $(PROGRAM).zip - -dist.src: - make clean - tar cf $(DISTNAME)-src.tar $(CFILES) $(HDRS) $(MISC) - gzip -f $(DISTNAME)-src.tar - -doc.nroff: - tbl aguide.mm | nroff -mm | colcrt - > arogue77.doc - -doc.groff: - groff -P-c -t -mm -Tascii aguide.mm | sed -e 's/.\x08//g' > arogue77.doc - groff -t -mm -Thtml aguide.mm > arogue77.ht - -dist.irix: - make clean - make CC=cc COPTS="-woff 1116 -O3" $(PROGRAM) - tar cf $(DISTNAME)-irix.tar $(PROGRAM) LICENSE.TXT $(DOCS) - gzip -f $(DISTNAME)-irix.tar - -dist.aix: - make clean - make CC=xlc COPTS="-qmaxmem=16768 -O3 -qstrict" $(PROGRAM) - tar cf $(DISTNAME)-aix.tar $(PROGRAM) LICENSE.TXT $(DOCS) - gzip -f $(DISTNAME)-aix.tar - -dist.linux: - make clean - make $(PROGRAM) - tar cf $(DISTNAME)-linux.tar $(PROGRAM) LICENSE.TXT $(DOCS) - gzip -f $(DISTNAME)-linux.tar - -dist.interix: - @$(MAKE) clean - @$(MAKE) COPTS="-ansi" $(PROGRAM) - tar cf $(DISTNAME)-interix.tar $(PROGRAM) LICENSE.TXT $(DOCS) - gzip -f $(DISTNAME)-interix.tar - -dist.cygwin: - @$(MAKE) --no-print-directory clean - @$(MAKE) --no-print-directory $(PROGRAM) - tar cf $(DISTNAME)-cygwin.tar $(PROGRAM).exe LICENSE.TXT $(DOCS) - gzip -f $(DISTNAME)-cygwin.tar - -# -# Use MINGW32-MAKE to build this target -# -dist.mingw32: - @$(MAKE) --no-print-directory RM="cmd /c del" clean - @$(MAKE) --no-print-directory LIBS="-lpdcurses" $(PROGRAM) - cmd /c del $(DISTNAME)-mingw32.zip - zip $(DISTNAME)-mingw32.zip $(PROGRAM).exe LICENSE.TXT $(DOCS) - -dist.msys: - @$(MAKE) --no-print-directory clean - @$(MAKE) --no-print-directory LIBS="-lcurses" $(PROGRAM) - tar cf $(DISTNAME)-msys.tar $(PROGRAM).exe LICENSE.TXT $(DOCS) - gzip -f $(DISTNAME)-msys.tar - -dist.djgpp: - @$(MAKE) --no-print-directory clean - @$(MAKE) --no-print-directory LDFLAGS="-L$(DJDIR)/LIB" \ - LIBS="-lpdcurses" $(PROGRAM) - rm -f $(DISTNAME)-djgpp.zip - zip $(DISTNAME)-djgpp.zip $(PROGRAM).exe LICENSE.TXT $(DOCS) - -# -# Use NMAKE to build this targer -# -dist.win32: - @$(MAKE) /NOLOGO O="obj" RM="-del" clean - @$(MAKE) /NOLOGO O="obj" CC="CL" \ - LIBS="..\pdcurses\pdcurses.lib shfolder.lib user32.lib Advapi32.lib" \ - COPTS="-nologo -I..\pdcurses \ - -Ox -wd4033 -wd4716" $(PROGRAM) - -del $(DISTNAME)-win32.zip - zip $(DISTNAME)-win32.zip $(PROGRAM).exe LICENSE.TXT $(DOCS) - - -actions.o: rogue.h -chase.o: rogue.h -command.o: rogue.h -command.o: mach_dep.h -daemon.o: rogue.h -daemons.o: rogue.h -eat.o: rogue.h -edit.o: mach_dep.h -edit.o: rogue.h -effects.o: rogue.h -encumb.o: rogue.h -fight.o: rogue.h -init.o: rogue.h -init.o: mach_dep.h -io.o: rogue.h -list.o: rogue.h -main.o: mach_dep.h -main.o: network.h -main.o: rogue.h -maze.o: rogue.h -misc.o: rogue.h -monsters.o: rogue.h -move.o: rogue.h -new_level.o: rogue.h -options.o: rogue.h -outside.o: rogue.h -pack.o: rogue.h -passages.o: rogue.h -player.o: rogue.h -potions.o: rogue.h -rings.o: rogue.h -rip.o: mach_dep.h -rip.o: network.h -rip.o: rogue.h -rogue.o: rogue.h -rooms.o: rogue.h -save.o: rogue.h -save.o: mach_dep.h -scrolls.o: rogue.h -sticks.o: rogue.h -things.o: rogue.h -trader.o: rogue.h -util.o: rogue.h -weapons.o: rogue.h -wear.o: rogue.h -wizard.o: rogue.h
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/arogue7/Makefile.in Thu Jun 04 10:41:39 2015 -0400 @@ -0,0 +1,199 @@ +# +# Makefile for rogue +# +# Advanced Rogue +# Copyright (C) 1984, 1985, 1986 Michael Morgan, Ken Dalka and AT&T +# All rights reserved. +# +# Based on "Rogue: Exploring the Dungeons of Doom" +# Copyright (C) 1980, 1981 Michael Toy, Ken Arnold and Glenn Wichman +# All rights reserved. +# +# See the file LICENSE.TXT for full copyright and licensing information. +# + +# +# Makefile for rogue +# + + +DISTNAME=@PACKAGE_TARNAME@@PACKAGE_VERSION@ +PROGRAM=@PROGRAM@ + +SAVEDIR=@SAVEDIR@ +SCOREFILE=@SCOREFILE@ +LOGFILE=@LOGFILE@ +GROUPOWNER=@GROUPOWNER@ + +O=o + +HDRS= rogue.h mach_dep.h network.h + +OBJS1 = vers.$(O) actions.$(O) chase.$(O) command.$(O) daemon.$(O) \ + daemons.$(O) eat.$(O) effects.$(O) encumb.$(O) fight.$(O) init.$(O) \ + io.$(O) list.$(O) main.$(O) maze.$(O) mdport.$(O) misc.$(O) \ + monsters.$(O) +OBJS2 = move.$(O) new_level.$(O) options.$(O) outside.$(O) pack.$(O) \ + passages.$(O) player.$(O) potions.$(O) rings.$(O) rip.$(O) rogue.$(O) \ + rooms.$(O) save.$(O) scrolls.$(O) state.$(O) sticks.$(O) things.$(O) \ + trader.$(O) util.$(O) weapons.$(O) wear.$(O) wizard.$(O) xcrypt.$(O) +OBJS = $(OBJS1) $(OBJS2) + +CFILES= vers.c actions.c chase.c command.c daemon.c \ + daemons.c eat.c effects.c encumb.c fight.c init.c \ + io.c list.c main.c maze.c mdport.c misc.c monsters.c \ + move.c new_level.c options.c outside.c pack.c \ + passages.c player.c potions.c rings.c rip.c rogue.c \ + rooms.c save.c scrolls.c state.c sticks.c things.c \ + trader.c util.c weapons.c wear.c wizard.c xcrypt.c +MISC_C= +DOCSRC= aguide.mm +DOCS = $(PROGRAM).doc $(PROGRAM).html +MISC = Makefile $(MISC_C) LICENSE.TXT $(PROGRAM).sln $(PROGRAM).vcproj $(DOCS)\ + $(DOCSRC) + +CC = gcc +CPPFLAGS =@DEFS@ +ROPTS = +COPTS = -O3 +CFLAGS= $(COPTS) $(ROPTS) +LIBS = @LIBS@ +RM = rm -f + +.SUFFIXES: .obj + +.c.obj: + $(CC) $(CFLAGS) /c $*.c + +$(PROGRAM): $(HDRS) $(OBJS) + $(CC) $(CFLAGS) $(LDFLAGS) $(OBJS) $(LIBS) -o $@ + +clean: + $(RM) $(OBJS1) + $(RM) $(OBJS2) + $(RM) core a.exe a.out a.exe.stackdump $(PROGRAM) $(PROGRAM).exe $(PROGRAM).lck + $(RM) $(PROGRAM).tar $(PROGRAM).tar.gz $(PROGRAM).zip + +dist.src: + make clean + tar cf $(DISTNAME)-src.tar $(CFILES) $(HDRS) $(MISC) + gzip -f $(DISTNAME)-src.tar + +doc.nroff: + tbl aguide.mm | nroff -mm | colcrt - > arogue77.doc + +doc.groff: + groff -P-c -t -mm -Tascii aguide.mm | sed -e 's/.\x08//g' > arogue77.doc + groff -t -mm -Thtml aguide.mm > arogue77.ht + +dist.irix: + make clean + make CC=cc COPTS="-woff 1116 -O3" $(PROGRAM) + tar cf $(DISTNAME)-irix.tar $(PROGRAM) LICENSE.TXT $(DOCS) + gzip -f $(DISTNAME)-irix.tar + +dist.aix: + make clean + make CC=xlc COPTS="-qmaxmem=16768 -O3 -qstrict" $(PROGRAM) + tar cf $(DISTNAME)-aix.tar $(PROGRAM) LICENSE.TXT $(DOCS) + gzip -f $(DISTNAME)-aix.tar + +dist.linux: + make clean + make $(PROGRAM) + tar cf $(DISTNAME)-linux.tar $(PROGRAM) LICENSE.TXT $(DOCS) + gzip -f $(DISTNAME)-linux.tar + +dist.interix: + @$(MAKE) clean + @$(MAKE) COPTS="-ansi" $(PROGRAM) + tar cf $(DISTNAME)-interix.tar $(PROGRAM) LICENSE.TXT $(DOCS) + gzip -f $(DISTNAME)-interix.tar + +dist.cygwin: + @$(MAKE) --no-print-directory clean + @$(MAKE) --no-print-directory $(PROGRAM) + tar cf $(DISTNAME)-cygwin.tar $(PROGRAM).exe LICENSE.TXT $(DOCS) + gzip -f $(DISTNAME)-cygwin.tar + +# +# Use MINGW32-MAKE to build this target +# +dist.mingw32: + @$(MAKE) --no-print-directory RM="cmd /c del" clean + @$(MAKE) --no-print-directory LIBS="-lpdcurses" $(PROGRAM) + cmd /c del $(DISTNAME)-mingw32.zip + zip $(DISTNAME)-mingw32.zip $(PROGRAM).exe LICENSE.TXT $(DOCS) + +dist.msys: + @$(MAKE) --no-print-directory clean + @$(MAKE) --no-print-directory LIBS="-lcurses" $(PROGRAM) + tar cf $(DISTNAME)-msys.tar $(PROGRAM).exe LICENSE.TXT $(DOCS) + gzip -f $(DISTNAME)-msys.tar + +dist.djgpp: + @$(MAKE) --no-print-directory clean + @$(MAKE) --no-print-directory LDFLAGS="-L$(DJDIR)/LIB" \ + LIBS="-lpdcurses" $(PROGRAM) + rm -f $(DISTNAME)-djgpp.zip + zip $(DISTNAME)-djgpp.zip $(PROGRAM).exe LICENSE.TXT $(DOCS) + +# +# Use NMAKE to build this targer +# +dist.win32: + @$(MAKE) /NOLOGO O="obj" RM="-del" clean + @$(MAKE) /NOLOGO O="obj" CC="CL" \ + LIBS="..\pdcurses\pdcurses.lib shfolder.lib user32.lib Advapi32.lib" \ + COPTS="-nologo -I..\pdcurses \ + -Ox -wd4033 -wd4716" $(PROGRAM) + -del $(DISTNAME)-win32.zip + zip $(DISTNAME)-win32.zip $(PROGRAM).exe LICENSE.TXT $(DOCS) + + +actions.o: rogue.h +chase.o: rogue.h +command.o: rogue.h +command.o: mach_dep.h +daemon.o: rogue.h +daemons.o: rogue.h +eat.o: rogue.h +edit.o: mach_dep.h +edit.o: rogue.h +effects.o: rogue.h +encumb.o: rogue.h +fight.o: rogue.h +init.o: rogue.h +init.o: mach_dep.h +io.o: rogue.h +list.o: rogue.h +main.o: mach_dep.h +main.o: network.h +main.o: rogue.h +maze.o: rogue.h +misc.o: rogue.h +monsters.o: rogue.h +move.o: rogue.h +new_level.o: rogue.h +options.o: rogue.h +outside.o: rogue.h +pack.o: rogue.h +passages.o: rogue.h +player.o: rogue.h +potions.o: rogue.h +rings.o: rogue.h +rip.o: mach_dep.h +rip.o: network.h +rip.o: rogue.h +rogue.o: rogue.h +rooms.o: rogue.h +save.o: rogue.h +save.o: mach_dep.h +scrolls.o: rogue.h +sticks.o: rogue.h +things.o: rogue.h +trader.o: rogue.h +util.o: rogue.h +weapons.o: rogue.h +wear.o: rogue.h +wizard.o: rogue.h
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/arogue7/acinclude.m4 Thu Jun 04 10:41:39 2015 -0400 @@ -0,0 +1,122 @@ +AC_DEFUN([MP_WITH_CURSES], + [AC_ARG_WITH(ncurses, [ --with-ncurses Force the use of ncurses over curses],,) + mp_save_LIBS="$LIBS" + CURSES_LIB="" + if test "$with_ncurses" != yes + then + AC_CACHE_CHECK([for working curses], mp_cv_curses, + [LIBS="$LIBS -lcurses" + AC_TRY_LINK( + [#include <curses.h>], + [chtype a; int b=A_STANDOUT, c=KEY_LEFT; initscr(); ], + mp_cv_curses=yes, mp_cv_curses=no)]) + if test "$mp_cv_curses" = yes + then + AC_DEFINE(HAVE_CURSES_H, 1, [Define to 1 if libcurses is requested]) + #AC_DEFINE(HAVE_CURSES_H) + CURSES_LIB="-lcurses" + fi + fi + if test ! "$CURSES_LIB" + then + AC_CACHE_CHECK([for working ncurses], mp_cv_ncurses, + [LIBS="$mp_save_LIBS -lncurses" + AC_TRY_LINK( + [#include <ncurses.h>], + [chtype a; int b=A_STANDOUT, c=KEY_LEFT; initscr(); ], + mp_cv_ncurses=yes, mp_cv_ncurses=no)]) + if test "$mp_cv_ncurses" = yes + then + AC_DEFINE(HAVE_NCURSES_H, 1, [Define to 1 if libncurses is requested]) + CURSES_LIB="-lncurses" + fi + fi + if test ! "$CURSES_LIB" + then + AC_CACHE_CHECK([for working pdcurses], mp_cv_pdcurses, + [LIBS="$mp_save_LIBS -lpdcurses" + AC_TRY_LINK( + [#include <curses.h>], + [chtype a; int b=A_STANDOUT, c=KEY_LEFT; initscr(); ], + mp_cv_pdcurses=yes, mp_cv_pdcurses=no)]) + if test "$mp_cv_pdcurses" = yes + then + AC_DEFINE(HAVE_CURSES_H, 1, [Define to 1 if libcurses is requested]) + CURSES_LIB="-lpdcurses" + fi + fi + if test ! "$CURSES_LIB" + then + AC_CACHE_CHECK([for working pdcur], mp_cv_pdcur, + [LIBS="$mp_save_LIBS -lpdcur" + AC_TRY_LINK( + [#include <curses.h>], + [chtype a; int b=A_STANDOUT, c=KEY_LEFT; initscr(); ], + mp_cv_pdcur=yes, mp_cv_pdcur=no)]) + if test "$mp_cv_pdcur" = yes + then + AC_DEFINE(HAVE_CURSES_H, 1, [Define to 1 if libcurses is requested]) + CURSES_LIB="-lpdcur" + fi + fi + if test ! "$CURSES_LIB" + then + AC_CACHE_CHECK([for working peer pdcurses], mp_cv_lpdcurses, + [LIBS="$mp_save_LIBS ../pdcurses/pdcurses.a" + AC_TRY_LINK( + [#include "../pdcurses/curses.h"], + [chtype a; int b=A_STANDOUT, c=KEY_LEFT; initscr(); ], + mp_cv_lpdcurses=yes, mp_cv_lpdcurses=no)]) + if test "$mp_cv_lpdcurses" = yes + then + AC_DEFINE(HAVE_CURSES_H, 1, [Define to 1 if libcurses is requested]) + CURSES_LIB="../pdcurses/pdcurses.a" + RF_ADDTO(CPPFLAGS,"-I../pdcurses") + fi + fi + AC_CACHE_CHECK([for ESCDELAY variable], + [mc_cv_ncurses_escdelay], + [AC_TRY_LINK([], [ + extern int ESCDELAY; + ESCDELAY = 0; + ], + [mc_cv_ncurses_escdelay=yes], + [mc_cv_ncurses_escdelay=no]) + ]) + if test "$mc_cv_ncurses_escdelay" = yes; then + AC_DEFINE(HAVE_ESCDELAY, 1, + [Define if ncurses has ESCDELAY variable]) + fi + if test ! "$CURSES_LIB" ; then + LIBS="$mp_save_LIBS" + fi +])dnl + +dnl +dnl RF_ADDTO(variable, value) +dnl +dnl Add value to variable +dnl +AC_DEFUN([RF_ADDTO],[ + if test "x$$1" = "x"; then + test "x$silent" != "xyes" && echo " setting $1 to \"$2\"" + $1="$2" + else + apr_addto_bugger="$2" + for i in $apr_addto_bugger; do + apr_addto_duplicate="0" + for j in $$1; do + if test "x$i" = "x$j"; then + apr_addto_duplicate="1" + break + fi + done + if test $apr_addto_duplicate = "0"; then + test "x$silent" != "xyes" && echo " adding \"$i\" to $1" + $1="$$1 $i" + fi + done + fi +])dnl + +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/arogue7/configure.ac Thu Jun 04 10:41:39 2015 -0400 @@ -0,0 +1,154 @@ +# -*- Autoconf -*- +# Process this file with autoconf to produce a configure script. + +AC_PREREQ(2.56) +AC_INIT([ARogue],[7.7.1], [yendor@rogueforge.net]) +AC_CONFIG_HEADERS([config.h]) +AC_CONFIG_FILES([Makefile]) + +# Checks for programs. +AC_PROG_CC +# Checks for libraries. +MP_WITH_CURSES +# Checks for header files. +AC_HEADER_STDC +AC_CHECK_HEADERS([pwd.h errno.h fcntl.h limits.h stdlib.h string.h sys/ioctl.h sys/utsname.h termios.h unistd.h utmp.h term.h ncurses/term.h process.h]) + +# Checks for typedefs, structures, and compiler characteristics. +AC_TYPE_SIZE_T +AC_STRUCT_TM +# Checks for library functions. +AC_FUNC_FORK +AC_PROG_GCC_TRADITIONAL +AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK +AC_TYPE_SIGNAL +AC_CHECK_FUNCS([erasechar killchar alarm getpass memset setenv strchr _spawnl spawnl getpwuid loadav strerror setgid setuid getuid getgid]) +AC_PROG_INSTALL + +AC_ARG_WITH(program-name, AC_HELP_STRING([--with-program-name=NAME],[alternate executable name]),[progname="$withval" ], [progname="arogue7"] ) +PROGRAM=$progname +AC_SUBST(PROGRAM) + +AC_ARG_ENABLE(setgid, AC_HELP_STRING([--enable-setgid=NAME],[install executable as setgid with group ownership of NAME @<:@default=no@:>@]),[],[]) +AC_MSG_CHECKING([if using setgid execute bit]) +if test "x$enable_setgid" = "xno" ; then +GROUPOWNER= +elif test "x$enable_setgid" = "xyes" ; then +GROUPOWNER=games +elif test "x$enable_setgid" = "x" ; then +GROUPOWNER= +else +GROUPOWNER=$enable_setgid +fi + +if test "x$GROUPOWNER" != "x" ; then +AC_DEFINE_UNQUOTED([GROUPOWNER],[$GROUPOWNER], [Define to group owner of setgid executable]) +AC_MSG_RESULT([$GROUPOWNER]) +else +AC_MSG_RESULT([no]) +fi + +AC_SUBST(GROUPOWNER) + +AC_ARG_ENABLE([scorefile],[AC_HELP_STRING([--enable-scorefile=SCOREFILE], [enable scoreboard with given filename])],[],[]) +AC_MSG_CHECKING([for scoreboard file]) +if test "x$enable_scorefile" = "xno" ; then +SCOREFILE= +elif test "x$enable_scorefile" = "xyes" ; then +SCOREFILE=$progname.scr +elif test "x$enable_scorefile" = "x" ; then +SCOREFILE=$progname.scr +else +SCOREFILE=$enable_scorefile +fi +