aboutsummaryrefslogtreecommitdiff
path: root/config/var-def.mk
diff options
context:
space:
mode:
Diffstat (limited to 'config/var-def.mk')
-rw-r--r--config/var-def.mk231
1 files changed, 0 insertions, 231 deletions
diff --git a/config/var-def.mk b/config/var-def.mk
deleted file mode 100644
index 99f5c649..00000000
--- a/config/var-def.mk
+++ /dev/null
@@ -1,231 +0,0 @@
-## ---------------------------------
-## -- Standard Autoconf variables --
-## ---------------------------------
-
-SHELL = @SHELL@
-VPATH = @srcdir@
-
-prefix = @prefix@
-exec_prefix = @exec_prefix@
-bindir = @bindir@
-sbindir = @sbindir@
-libexecdir = @libexecdir@
-datarootdir = @datarootdir@
-datadir = @datadir@
-sysconfdir = @sysconfdir@
-sharedstatedir = @sharedstatedir@
-localstatedir = @localstatedir@
-includedir = @includedir@
-oldincludedir = @oldincludedir@
-docdir = @docdir@
-infodir = @infodir@
-htmldir = @htmldir@
-dvidir = @dvidir@
-pdfdir = @pdfdir@
-psdir = @psdir@
-libdir = @libdir@
-lispdir = @lispdir@
-localedir = @localedir@
-
-host = @host@
-host_alias = @host_alias@
-build = @build@
-build_alias = @build_alias@
-target = @target@
-target_alias = @target_alias@
-
-srcdir = @srcdir@
-abs_srcdir = @abs_srcdir@
-top_srcdir = @top_srcdir@
-abs_top_srcdir = @abs_top_srcdir@
-top_confdir = $(top_srcdir)/config
-
-# Notice that there is a bug in Autoconf 2.59 whereby the variable
-# top_builddir is not defined. So avoid to use it directly. Use
-# abs_top_builddir.
-builddir = @builddir@
-abs_builddir = @abs_builddir@
-top_builddir = @top_builddir@
-abs_top_builddir = @abs_top_builddir@
-datadir = @datadir@
-
-PACKAGE_VERSION = @PACKAGE_VERSION@
-
-AR = @AR@
-CC = @CC@
-CXX = @CXX@
-LD = @LD@
-CPPFLAGS = @CPPFLAGS@
-CFLAGS = @CFLAGS@
-CXXFLAGS = @CXXFLAGS@
-LDFLAGS = @LDFLAGS@
-OBJEXT = @OBJEXT@
-EXEEXT = @EXEEXT@
-oa_shrlib_prefix = @oa_shrlib_prefix@
-# this includes leading period
-SHREXT = @shared_ext@
-# extension of the archive library; this does not include period
-LIBEXT = @libext@
-
-PACKAGE_STRING = @PACKAGE_STRING@
-
-LIBTOOL_DEPS = @LIBTOOL_DEPS@
-LIBTOOL = $(top_builddir)/libtool
-
-## Command used to compile a C++ program
-COMPILE = $(LIBTOOL) --tag=CXX --mode=compile $(CXX) -c $(CPPFLAGS) $(CXXFLAGS)
-
-## Sadly, at the moment, the C parts of the OpenAxiom system is not
-## well structured enough to allow for clean dynamic libraries
-## and dynamic linking. So, we build static programs.
-## This situation is to be fixed when I have time.
-LINK = $(LIBTOOL) --tag=CXX --mode=link $(CXX) -static $(LDFLAGS)
-
-## Libtool is a disaster for building DLLs on Cygwin, and insists
-## on adding silly extensions where it should not on MinGW, so we have
-## to be very selective about when and where to use. Sadly, that ends
-## up negating the whole point of having Libtool in the first place.
-ifeq (@oa_use_libtool_for_shared_lib@,no)
-LINK_SHRLIB = $(CC) $(LDFLAGS)
-CXXLINK_SHRLIB = $(CXX) $(LDFLAGS)
-else
-LINK_SHRLIB = $(LIBTOOL) --tag=CC --mode=link $(CC) $(LDFLAGS)
-CXXLINK_SHRLIB = $(LIBTOOL) --tag=CXX --mode=link $(CC) $(LDFLAGS)
-endif
-
-
-oa_shrobj_flags = @oa_shrobj_flags@
-oa_shrlib_flags = @oa_shrlib_flags@
-
-AWK = @AWK@
-INSTALL = @INSTALL@
-install_sh = @install_sh@
-install_sh_DATA = $(install_sh) -c -m 644
-install_sh_PROGRAM = $(install_sh) -c
-install_sh_script = $(install_sh) -c
-INSTALL_DATA = @INSTALL_DATA@
-INSTALL_PROGRAM = @INSTALL_PROGRAM@
-INSTALL_SCRIPT = @INSTALL_SCRIPT@
-## FIXME: The test done with Autoconf-2.60 and later concludes
-## that "ln -s" is unusable on msys, and therefore defaults to
-## "cp -p", but that default is unusable for us. For our
-## purpose "ln -s" is just fine on that platform. Consequently
-## we are explicitly overrding that value here.
-LN_S = ln -s
-mkinstalldirs = $(top_srcdir)/config/mkinstalldirs
-RANLIB = @RANLIB@
-TOUCH = @TOUCH@
-
-# The list of make targets made recursively, by walking sub-directories
-# Normally, this is a template generated by Automake, but we don't
-# use Automake yet; so, we must do it the hard way.
-# See the corresponding rules in setup-dep.mk
-RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
- html-recursive info-recursive install-data-recursive \
- install-exec-recursive install-info-recursive \
- install-recursive installcheck-recursive \
- installdirs-recursive pdf-recursive ps-recursive \
- uninstall-info-recursive uninstall-recursive
-
-
-## Normally, Automake will substitute the value for this variable.
-## But, we don't have Automake yet. So we punt on it.
-mkdir_p = mkdir -p
-
-STAMP = echo timestamp >
-
-## -------------------------
-## -- OpenAxiom variables --
-## -------------------------
-
-quiet_flags = @oa_quiet_flags@
-eval_flags = @oa_eval_flags@
-oa_standard_linking = @oa_standard_linking@
-
-
-## Absolute path to the toplevel source directory for OpenAxiom. This is
-## almost like Autoconf-standard abs_top_srcdir except that, it retains
-## the same syntactic values in subdirectories.
-
-## Where The OpenAxiom distribution main source files are kept.
-## Notice, this is the src/ directory within the toplevel source
-## directory
-
-oa_src_srcdir = @oa_src_srcdir@
-oa_src_docdir = @oa_src_docdir@
-oa_src_datadir = @oa_src_datadir@
-oa_src_algdir = @oa_src_algdir@
-oa_src_texdir = @oa_src_texdir@
-
-oa_configdir = @oa_configdir@
-oa_c_macros = @oa_c_macros@
-
-LATEX = @LATEX@
-
-## Staging directory for the target DESTDIR
-oa_targetdir = @oa_targetdir@
-oa_target_bindir = @oa_target_bindir@
-oa_target_libdir = @oa_target_libdir@
-oa_target_srcdir = @oa_target_srcdir@
-oa_target_docdir = @oa_target_docdir@
-oa_target_datadir = @oa_target_datadir@
-oa_target_texdir = @oa_target_texdir@
-oa_target_includedir = @oa_target_includedir@
-
-
-## The final directory where OpenAxiom is installed. This is usually
-## the directory deduced or specified at configuration time.
-open_axiom_installdir = @open_axiom_installdir@
-
-INC=$(top_srcdir)/src/include
-oa_c_runtime_extra = @LIBS@ @oa_c_runtime_extra@ -lm
-oa_c_libs = -lopen-axiom-core $(oa_c_runtime_extra) -lm
-
-oa_yesno_to_lisp_boolean = $(subst yes,t,$(subst no,nil,$(1)))
-
-oa_enable_profiling = @oa_enable_profiling@
-oa_enable_lisp_profiling = \
- $(call oa_yesno_to_lisp_boolean,$(oa_enable_profiling))
-
-oa_enable_threads = @oa_enable_threads@
-
-oa_use_x = @oa_use_x@
-AXIOM_X11_CFLAGS = @X_CFLAGS@
-AXIOM_X11_LDFLAGS = @X_LIBS@ @X_PRE_LIBS@ -lX11 @X_EXTRA_LIBS@
-
-oa_includes = \
- -I$(oa_src_srcdir)/include \
- -I$(oa_configdir) \
- -I$(oa_target_includedir)
-
-## Where the staging build directory is found
-AXIOM = $(top_builddir)/$(target)
-
-## Where to find OpenAxiom data bases.
-DAASE = $(oa_src_datadir)
-
-## -------------------------------------------
-## -- Files generated for the build machine --
-## -------------------------------------------
-oa_hammer = $(top_builddir)/src/utils/hammer$(EXEEXT)
-
-OA_LISP = @OA_LISP@
-# Extension of the output file name returned by compile-file
-FASLEXT = @FASLEXT@
-
-# Extension of compiled FASLs appropriate for linking into executable
-# programs. For most Lisp systems, it is the same as FASLEXT because
-# they build programs by dumping images.
-ifeq (@oa_lisp_flavor@,ecl)
-LNKEXT = $(OBJEXT)
-else
-LNKEXT = $(FASLEXT)
-endif
-
-
-# Qt utilities
-OA_QT_MOC = @OA_QT_MOC@
-OA_QT_QMAKE = @OA_QT_QMAKE@
-
-## Clear suffix-based implicit rule table.
-.SUFFIXES: