aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2014-02-21 15:06:21 +0000
committerdos-reis <gdr@axiomatics.org>2014-02-21 15:06:21 +0000
commitd9885ac83981e3a67657c8e24df8943e5e126a9e (patch)
tree406ed31bfc6fc743c0be8cd9314fefdb5ceca1db
parent94959a8e7991c09ecaa72ca1c3fdc326ddb28819 (diff)
downloadopen-axiom-d9885ac83981e3a67657c8e24df8943e5e126a9e.tar.gz
Rename AXIOM_LISP to OA_LISP
-rw-r--r--Makefile.in2
-rw-r--r--config/open-axiom.m436
-rw-r--r--config/var-def.mk2
-rwxr-xr-xconfigure58
-rw-r--r--src/Makefile.in2
-rw-r--r--src/algebra/Makefile.in2
-rw-r--r--src/io/Makefile.in2
-rw-r--r--src/lisp/Makefile.in6
-rw-r--r--src/rt/Makefile.in2
-rw-r--r--src/syntax/Makefile.in2
10 files changed, 57 insertions, 57 deletions
diff --git a/Makefile.in b/Makefile.in
index c3c10aa3..0f4a0b0e 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -284,7 +284,6 @@ AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AWK = @AWK@
-AXIOM_LISP = @AXIOM_LISP@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
@@ -333,6 +332,7 @@ MKDIR_P = @MKDIR_P@
MKTEMP = @MKTEMP@
NM = @NM@
NMEDIT = @NMEDIT@
+OA_LISP = @OA_LISP@
OA_QT_MOC = @OA_QT_MOC@
OA_QT_QMAKE = @OA_QT_QMAKE@
OA_WINDOWS_POWERSHELL = @OA_WINDOWS_POWERSHELL@
diff --git a/config/open-axiom.m4 b/config/open-axiom.m4
index 5a7712ef..05439e1b 100644
--- a/config/open-axiom.m4
+++ b/config/open-axiom.m4
@@ -69,10 +69,10 @@ dnl ----------------------------------
dnl Check for Lisp systems we know are just too buggy for use.
AC_DEFUN([OPENAXIOM_REJECT_ROTTED_LISP],[
if test x"$oa_include_gcl" != xyes; then
- case $AXIOM_LISP in
+ case $OA_LISP in
*gcl*)
- AC_MSG_CHECKING([$AXIOM_LISP version])
- oa_lisp_version=`$AXIOM_LISP -batch -eval "(format t \"~S\" (lisp-implementation-version))"`
+ AC_MSG_CHECKING([$OA_LISP version])
+ oa_lisp_version=`$OA_LISP -batch -eval "(format t \"~S\" (lisp-implementation-version))"`
AC_MSG_RESULT([$oa_lisp_version])
case $oa_lisp_version in
*2.6.7*|*2.6.8*|*2.6.9*|*2.6.10*) ;; # OK
@@ -83,8 +83,8 @@ if test x"$oa_include_gcl" != xyes; then
;;
# SBCL-1.0.29 has a nasty regression that prevents OpenAxiom build
*sbcl*)
- AC_MSG_CHECKING([$AXIOM_LISP version])
- oa_lisp_version=`$AXIOM_LISP --version`
+ AC_MSG_CHECKING([$OA_LISP version])
+ oa_lisp_version=`$OA_LISP --version`
AC_MSG_RESULT([$oa_lisp_version])
case $oa_lisp_version in
*1.0.29)
@@ -120,12 +120,12 @@ AC_ARG_ENABLE([gcl], [ --enable-gcl build GCL from OpenAxiom source]
esac])
## If nothing was said about preferred Lisp, guess one.
-AC_SUBST(AXIOM_LISP)
+AC_SUBST(OA_LISP)
if test -n "$oa_user_lisp"; then
## Honor use of Lisp image specified on command line
- AXIOM_LISP=$oa_user_lisp
+ OA_LISP=$oa_user_lisp
elif test -z "$oa_include_gcl"; then
- AC_CHECK_PROGS([AXIOM_LISP], [sbcl gcl ecl clisp ccl64 ccl32 ccl])
+ AC_CHECK_PROGS([OA_LISP], [sbcl gcl ecl clisp ccl64 ccl32 ccl])
fi
])
@@ -134,7 +134,7 @@ dnl -- OPENAXIOM_CHECK_GCL_INCLUSION --
dnl -----------------------------------
dnl Check for consistency of configure options when GCL is requested.
AC_DEFUN([OPENAXIOM_CHECK_GCL_INCLUSION],[
-case $oa_include_gcl,$AXIOM_LISP in
+case $oa_include_gcl,$OA_LISP in
no,)
## It doesn't make sense not to include GCL when no Lisp image
## is available. Give up.
@@ -147,7 +147,7 @@ case $oa_include_gcl,$AXIOM_LISP in
## User may explicilty specify --enable-gcl, but may be missing
## the dependency tarball.
if test -d ${srcdir}/gcl; then
- AXIOM_LISP='$(oa_build_bindir)/gcl'
+ OA_LISP='$(oa_build_bindir)/gcl'
oa_include_gcl=yes
elif test -z "$oa_include_gcl"; then
AC_MSG_ERROR([OpenAxiom requires a Lisp system. Either separately build one (GCL-2.6.7, GCL-2.6.8, SBCL, ECL, CLisp, Clozure CL), or get the dependency tarball from OpenAxiom download website.])
@@ -156,7 +156,7 @@ case $oa_include_gcl,$AXIOM_LISP in
fi
;;
yes,*)
- AC_MSG_ERROR([--with-lisp=$AXIOM_LISP conflicts with --enable-gcl])
+ AC_MSG_ERROR([--with-lisp=$OA_LISP conflicts with --enable-gcl])
;;
esac
])
@@ -181,7 +181,7 @@ AC_MSG_CHECKING([which flavor of Lisp])
if test x"$oa_include_gcl" = xyes; then
oa_lisp_flavor=gcl
else
- case `echo '(lisp-implementation-type)' | $AXIOM_LISP` in
+ case `echo '(lisp-implementation-type)' | $OA_LISP` in
*GCL*)
oa_lisp_flavor=gcl
;;
@@ -195,9 +195,9 @@ else
*"CLISP"*)
## Not all variants of CLisp have FFI support. FFI is used
## internally used by OpenAxiom in essential way.
- if ! $AXIOM_LISP -q -x '*features*' | grep ':FFI' > /dev/null
+ if ! $OA_LISP -q -x '*features*' | grep ':FFI' > /dev/null
then
- AC_MSG_ERROR([$AXIOM_LISP does not support Foreign Function Interface. Please upgrade to a better version of CLisp or install SBCL.])
+ AC_MSG_ERROR([$OA_LISP does not support Foreign Function Interface. Please upgrade to a better version of CLisp or install SBCL.])
fi
oa_lisp_flavor=clisp
;;
@@ -397,7 +397,7 @@ case $oa_lisp_flavor in
oa_quiet_flags='--quiet --no-init'
oa_eval_flags='--eval'
;;
- *) AC_MSG_ERROR([We do not know how to build OpenAxiom this $AXIOM_LISP]) ;;
+ *) AC_MSG_ERROR([We do not know how to build OpenAxiom this $OA_LISP]) ;;
esac
])
@@ -416,7 +416,7 @@ else
## replacement of <newline> by <space>.
openaxiom_save_IFS=$IFS
IFS=' '
- oa_fasl_type=`$AXIOM_LISP $oa_quiet_flags $oa_eval_flags '(progn (format t "oa_fasl_type=~a" (pathname-type (compile-file-pathname "foo.lisp"))) (quit))'`
+ oa_fasl_type=`$OA_LISP $oa_quiet_flags $oa_eval_flags '(progn (format t "oa_fasl_type=~a" (pathname-type (compile-file-pathname "foo.lisp"))) (quit))'`
## Now pull out the fasl type. ECL has the habit of spitting noise
## about internal loading. Therefore, we must look only for a line that
@@ -515,10 +515,10 @@ dnl Determine the register precision as seen by the host Lisp system, and
dnl set the global variable oa_host_lisp_precision.
AC_DEFUN([OPENAXIOM_HOST_LISP_CPU_PRECISION], [
if test x"$oa_include_gcl" != xyes; then
- AC_MSG_CHECKING([CPU precision as seen by $AXIOM_LISP])
+ AC_MSG_CHECKING([CPU precision as seen by $OA_LISP])
# All Lisp systems we support put the relevant information
# on the *FEATURES* list.
- case `echo '*features*' | $AXIOM_LISP` in
+ case `echo '*features*' | $OA_LISP` in
*X86-64*|*X86_64*|*WORD-SIZE=64*|*64-BIT*)
# PORTME: the pattern above covers only the supported free Lisps, i.e.
# GCL, SBCL, CLisp, ECL and Clozure CL.
diff --git a/config/var-def.mk b/config/var-def.mk
index 21f8e5fe..2b91a330 100644
--- a/config/var-def.mk
+++ b/config/var-def.mk
@@ -207,7 +207,7 @@ DAASE = $(oa_src_datadir)
## -------------------------------------------
oa_hammer = $(top_builddir)/src/utils/hammer$(EXEEXT)
-AXIOM_LISP = @AXIOM_LISP@
+OA_LISP = @OA_LISP@
# Extension of the output file name returned by compile-file
FASLEXT = @oa_fasl_type@
diff --git a/configure b/configure
index e85626ca..413651ac 100755
--- a/configure
+++ b/configure
@@ -743,7 +743,7 @@ OA_ECL_RT_FALSE
OA_ECL_RT_TRUE
oa_standard_linking
oa_lisp_flavor
-AXIOM_LISP
+OA_LISP
OA_WINDOWS_POWERSHELL
open_axiom_installdir
AM_BACKSLASH
@@ -3908,7 +3908,7 @@ fi
if test -n "$oa_user_lisp"; then
## Honor use of Lisp image specified on command line
- AXIOM_LISP=$oa_user_lisp
+ OA_LISP=$oa_user_lisp
elif test -z "$oa_include_gcl"; then
for ac_prog in sbcl gcl ecl clisp ccl64 ccl32 ccl
do
@@ -3916,11 +3916,11 @@ do
set dummy $ac_prog; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
-if ${ac_cv_prog_AXIOM_LISP+:} false; then :
+if ${ac_cv_prog_OA_LISP+:} false; then :
$as_echo_n "(cached) " >&6
else
- if test -n "$AXIOM_LISP"; then
- ac_cv_prog_AXIOM_LISP="$AXIOM_LISP" # Let the user override the test.
+ if test -n "$OA_LISP"; then
+ ac_cv_prog_OA_LISP="$OA_LISP" # Let the user override the test.
else
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
@@ -3929,7 +3929,7 @@ do
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
- ac_cv_prog_AXIOM_LISP="$ac_prog"
+ ac_cv_prog_OA_LISP="$ac_prog"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
fi
@@ -3939,24 +3939,24 @@ IFS=$as_save_IFS
fi
fi
-AXIOM_LISP=$ac_cv_prog_AXIOM_LISP
-if test -n "$AXIOM_LISP"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AXIOM_LISP" >&5
-$as_echo "$AXIOM_LISP" >&6; }
+OA_LISP=$ac_cv_prog_OA_LISP
+if test -n "$OA_LISP"; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OA_LISP" >&5
+$as_echo "$OA_LISP" >&6; }
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
fi
- test -n "$AXIOM_LISP" && break
+ test -n "$OA_LISP" && break
done
fi
-case $oa_include_gcl,$AXIOM_LISP in
+case $oa_include_gcl,$OA_LISP in
no,)
## It doesn't make sense not to include GCL when no Lisp image
## is available. Give up.
@@ -3969,7 +3969,7 @@ case $oa_include_gcl,$AXIOM_LISP in
## User may explicilty specify --enable-gcl, but may be missing
## the dependency tarball.
if test -d ${srcdir}/gcl; then
- AXIOM_LISP='$(oa_build_bindir)/gcl'
+ OA_LISP='$(oa_build_bindir)/gcl'
oa_include_gcl=yes
elif test -z "$oa_include_gcl"; then
as_fn_error $? "OpenAxiom requires a Lisp system. Either separately build one (GCL-2.6.7, GCL-2.6.8, SBCL, ECL, CLisp, Clozure CL), or get the dependency tarball from OpenAxiom download website." "$LINENO" 5
@@ -3978,7 +3978,7 @@ case $oa_include_gcl,$AXIOM_LISP in
fi
;;
yes,*)
- as_fn_error $? "--with-lisp=$AXIOM_LISP conflicts with --enable-gcl" "$LINENO" 5
+ as_fn_error $? "--with-lisp=$OA_LISP conflicts with --enable-gcl" "$LINENO" 5
;;
esac
@@ -3997,7 +3997,7 @@ $as_echo_n "checking which flavor of Lisp... " >&6; }
if test x"$oa_include_gcl" = xyes; then
oa_lisp_flavor=gcl
else
- case `echo '(lisp-implementation-type)' | $AXIOM_LISP` in
+ case `echo '(lisp-implementation-type)' | $OA_LISP` in
*GCL*)
oa_lisp_flavor=gcl
;;
@@ -4011,9 +4011,9 @@ else
*"CLISP"*)
## Not all variants of CLisp have FFI support. FFI is used
## internally used by OpenAxiom in essential way.
- if ! $AXIOM_LISP -q -x '*features*' | grep ':FFI' > /dev/null
+ if ! $OA_LISP -q -x '*features*' | grep ':FFI' > /dev/null
then
- as_fn_error $? "$AXIOM_LISP does not support Foreign Function Interface. Please upgrade to a better version of CLisp or install SBCL." "$LINENO" 5
+ as_fn_error $? "$OA_LISP does not support Foreign Function Interface. Please upgrade to a better version of CLisp or install SBCL." "$LINENO" 5
fi
oa_lisp_flavor=clisp
;;
@@ -4052,11 +4052,11 @@ _ACEOF
if test x"$oa_include_gcl" != xyes; then
- case $AXIOM_LISP in
+ case $OA_LISP in
*gcl*)
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking $AXIOM_LISP version" >&5
-$as_echo_n "checking $AXIOM_LISP version... " >&6; }
- oa_lisp_version=`$AXIOM_LISP -batch -eval "(format t \"~S\" (lisp-implementation-version))"`
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking $OA_LISP version" >&5
+$as_echo_n "checking $OA_LISP version... " >&6; }
+ oa_lisp_version=`$OA_LISP -batch -eval "(format t \"~S\" (lisp-implementation-version))"`
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $oa_lisp_version" >&5
$as_echo "$oa_lisp_version" >&6; }
case $oa_lisp_version in
@@ -4069,9 +4069,9 @@ $as_echo "$as_me: WARNING: $oa_lisp_version is not supported by this version of
;;
# SBCL-1.0.29 has a nasty regression that prevents OpenAxiom build
*sbcl*)
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking $AXIOM_LISP version" >&5
-$as_echo_n "checking $AXIOM_LISP version... " >&6; }
- oa_lisp_version=`$AXIOM_LISP --version`
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking $OA_LISP version" >&5
+$as_echo_n "checking $OA_LISP version... " >&6; }
+ oa_lisp_version=`$OA_LISP --version`
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $oa_lisp_version" >&5
$as_echo "$oa_lisp_version" >&6; }
case $oa_lisp_version in
@@ -4085,11 +4085,11 @@ fi
if test x"$oa_include_gcl" != xyes; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking CPU precision as seen by $AXIOM_LISP" >&5
-$as_echo_n "checking CPU precision as seen by $AXIOM_LISP... " >&6; }
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking CPU precision as seen by $OA_LISP" >&5
+$as_echo_n "checking CPU precision as seen by $OA_LISP... " >&6; }
# All Lisp systems we support put the relevant information
# on the *FEATURES* list.
- case `echo '*features*' | $AXIOM_LISP` in
+ case `echo '*features*' | $OA_LISP` in
*X86-64*|*X86_64*|*WORD-SIZE=64*|*64-BIT*)
# PORTME: the pattern above covers only the supported free Lisps, i.e.
# GCL, SBCL, CLisp, ECL and Clozure CL.
@@ -17775,7 +17775,7 @@ case $oa_lisp_flavor in
oa_quiet_flags='--quiet --no-init'
oa_eval_flags='--eval'
;;
- *) as_fn_error $? "We do not know how to build OpenAxiom this $AXIOM_LISP" "$LINENO" 5 ;;
+ *) as_fn_error $? "We do not know how to build OpenAxiom this $OA_LISP" "$LINENO" 5 ;;
esac
@@ -17789,7 +17789,7 @@ else
## replacement of <newline> by <space>.
openaxiom_save_IFS=$IFS
IFS=' '
- oa_fasl_type=`$AXIOM_LISP $oa_quiet_flags $oa_eval_flags '(progn (format t "oa_fasl_type=~a" (pathname-type (compile-file-pathname "foo.lisp"))) (quit))'`
+ oa_fasl_type=`$OA_LISP $oa_quiet_flags $oa_eval_flags '(progn (format t "oa_fasl_type=~a" (pathname-type (compile-file-pathname "foo.lisp"))) (quit))'`
## Now pull out the fasl type. ECL has the habit of spitting noise
## about internal loading. Therefore, we must look only for a line that
diff --git a/src/Makefile.in b/src/Makefile.in
index a88f874e..e9b7ecb7 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -216,7 +216,6 @@ AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AWK = @AWK@
-AXIOM_LISP = @AXIOM_LISP@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
@@ -263,6 +262,7 @@ MKDIR_P = @MKDIR_P@
MKTEMP = @MKTEMP@
NM = @NM@
NMEDIT = @NMEDIT@
+OA_LISP = @OA_LISP@
OA_QT_MOC = @OA_QT_MOC@
OA_QT_QMAKE = @OA_QT_QMAKE@
OA_WINDOWS_POWERSHELL = @OA_WINDOWS_POWERSHELL@
diff --git a/src/algebra/Makefile.in b/src/algebra/Makefile.in
index d8ab6fc2..e9254726 100644
--- a/src/algebra/Makefile.in
+++ b/src/algebra/Makefile.in
@@ -400,7 +400,6 @@ AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AWK = @AWK@
-AXIOM_LISP = @AXIOM_LISP@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
@@ -447,6 +446,7 @@ MKDIR_P = @MKDIR_P@
MKTEMP = @MKTEMP@
NM = @NM@
NMEDIT = @NMEDIT@
+OA_LISP = @OA_LISP@
OA_QT_MOC = @OA_QT_MOC@
OA_QT_QMAKE = @OA_QT_QMAKE@
OA_WINDOWS_POWERSHELL = @OA_WINDOWS_POWERSHELL@
diff --git a/src/io/Makefile.in b/src/io/Makefile.in
index c25b09e2..4bf2aeee 100644
--- a/src/io/Makefile.in
+++ b/src/io/Makefile.in
@@ -213,7 +213,6 @@ AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AWK = @AWK@
-AXIOM_LISP = @AXIOM_LISP@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
@@ -260,6 +259,7 @@ MKDIR_P = @MKDIR_P@
MKTEMP = @MKTEMP@
NM = @NM@
NMEDIT = @NMEDIT@
+OA_LISP = @OA_LISP@
OA_QT_MOC = @OA_QT_MOC@
OA_QT_QMAKE = @OA_QT_QMAKE@
OA_WINDOWS_POWERSHELL = @OA_WINDOWS_POWERSHELL@
diff --git a/src/lisp/Makefile.in b/src/lisp/Makefile.in
index cbf89c49..af1924bd 100644
--- a/src/lisp/Makefile.in
+++ b/src/lisp/Makefile.in
@@ -121,7 +121,7 @@ else
endif
base-lisp$(EXEEXT): core.$(FASLEXT) $(oa_base_lisp_linkset)
- $(AXIOM_LISP) \
+ $(OA_LISP) \
$(eval_flags) '(load "core")' \
$(eval_flags) '(|AxiomCore|::|link| "$@" (quote $(base_lisp_objects)) "|AxiomCore|::|topLevel|")'
@@ -175,13 +175,13 @@ core.lisp: $(srcdir)/core.lisp.in
core.$(FASLEXT): core.lisp
ifeq (@oa_lisp_flavor@,ecl)
- $(AXIOM_LISP) $(quiet_flags) \
+ $(OA_LISP) $(quiet_flags) \
$(eval_flags) '(require (quote cmp))' \
$(eval_flags) '(compile-file "$<" :system-p t)' \
$(eval_flags) '(c::build-fasl "$@" :lisp-files (quote ("core.$(LNKEXT)")))' \
$(eval_flags) '(quit)'
else
- $(AXIOM_LISP) $(quiet_flags) \
+ $(OA_LISP) $(quiet_flags) \
$(eval_flags) '(progn (compile-file "$<") (quit))'
endif
diff --git a/src/rt/Makefile.in b/src/rt/Makefile.in
index b767e683..5ff44e8c 100644
--- a/src/rt/Makefile.in
+++ b/src/rt/Makefile.in
@@ -213,7 +213,6 @@ AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AWK = @AWK@
-AXIOM_LISP = @AXIOM_LISP@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
@@ -260,6 +259,7 @@ MKDIR_P = @MKDIR_P@
MKTEMP = @MKTEMP@
NM = @NM@
NMEDIT = @NMEDIT@
+OA_LISP = @OA_LISP@
OA_QT_MOC = @OA_QT_MOC@
OA_QT_QMAKE = @OA_QT_QMAKE@
OA_WINDOWS_POWERSHELL = @OA_WINDOWS_POWERSHELL@
diff --git a/src/syntax/Makefile.in b/src/syntax/Makefile.in
index 98cc903d..6c459782 100644
--- a/src/syntax/Makefile.in
+++ b/src/syntax/Makefile.in
@@ -213,7 +213,6 @@ AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AWK = @AWK@
-AXIOM_LISP = @AXIOM_LISP@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
@@ -260,6 +259,7 @@ MKDIR_P = @MKDIR_P@
MKTEMP = @MKTEMP@
NM = @NM@
NMEDIT = @NMEDIT@
+OA_LISP = @OA_LISP@
OA_QT_MOC = @OA_QT_MOC@
OA_QT_QMAKE = @OA_QT_QMAKE@
OA_WINDOWS_POWERSHELL = @OA_WINDOWS_POWERSHELL@