diff options
author | dos-reis <gdr@axiomatics.org> | 2014-08-18 04:05:29 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2014-08-18 04:05:29 +0000 |
commit | 0350f861dbe72aa960dbfd22034432104229d04f (patch) | |
tree | a978b065e68ce3071a92ecccea54568268356d19 /config | |
parent | 0ed944e84ed0611fda64c19db78c8d68debd8822 (diff) | |
download | open-axiom-0350f861dbe72aa960dbfd22034432104229d04f.tar.gz |
Add src/boot/Makefile.am
Diffstat (limited to 'config')
-rw-r--r-- | config/open-axiom.m4 | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/config/open-axiom.m4 b/config/open-axiom.m4 index 7a1c158b..6c374f66 100644 --- a/config/open-axiom.m4 +++ b/config/open-axiom.m4 @@ -154,7 +154,7 @@ AC_SUBST(oa_lisp_flavor) ## Most Lisp systems don't use conventional methods for building programs. oa_standard_linking=no AC_SUBST(oa_standard_linking) - +oa_lnkext='$(FASLEXT)' ## The pipe below is OK, for as of this writting, the free Lisp systems ## ECL, GCL, SBCL, CLisp, and Clozure CL all exit at end of standard input. AC_MSG_CHECKING([which flavor of Lisp]) @@ -168,6 +168,7 @@ else *"ECL"*) oa_lisp_flavor=ecl oa_standard_linking=yes + oa_lnkext='$(OBJEXT)' ;; *"SBCL"*) oa_lisp_flavor=sbcl @@ -197,6 +198,7 @@ AM_CONDITIONAL([OA_STANDARD_LINKING],[test $oa_standard_linking = yes]) AC_DEFINE_UNQUOTED([OPENAXIOM_BASE_RTS], [Runtime::${oa_lisp_flavor}], [The kind of base runtime system for this build.]) +AC_SUBST(LNKEXT,[$oa_lnkext]) ]) dnl --------------------------------- |