Support EXEEXT properly.

This commit is contained in:
Marcus Sundberg 2000-05-20 00:11:22 +00:00
parent e8cf54f5f3
commit 42bea2445f

View file

@ -20,7 +20,7 @@ AC_SUBST(QW_VERSION)
AC_SUBST(QSG_VERSION) AC_SUBST(QSG_VERSION)
dnl Start TARGETS out at "qf-server" dnl Start TARGETS out at "qf-server"
TARGETS=qf-server TARGETS="qf-server\$(EXEEXT)"
dnl Set to yes for releases dnl Set to yes for releases
RELEASE=no RELEASE=no
@ -528,15 +528,15 @@ AC_SUBST(CL_SYS_SRC)
AC_SUBST(SV_SYS_SRC) AC_SUBST(SV_SYS_SRC)
if test "x$HAVE_SVGA" = xyes; then if test "x$HAVE_SVGA" = xyes; then
TARGETS="$TARGETS qf-client-svga" TARGETS="$TARGETS qf-client-svga\$(EXEEXT)"
fi fi
if test "x$HAVE_GGI" = xyes; then if test "x$HAVE_GGI" = xyes; then
TARGETS="$TARGETS qf-client-ggi" TARGETS="$TARGETS qf-client-ggi\$(EXEEXT)"
fi fi
if test "x$HAVE_X" = xyes; then if test "x$HAVE_X" = xyes; then
TARGETS="$TARGETS qf-client-x11" TARGETS="$TARGETS qf-client-x11\$(EXEEXT)"
if test "x$HAVE_GLX" = xyes; then if test "x$HAVE_GLX" = xyes; then
TARGETS="$TARGETS qf-client-glx" TARGETS="$TARGETS qf-client-glx\$(EXEEXT)"
fi fi
fi fi
AC_SUBST(TARGETS) AC_SUBST(TARGETS)