diff options
author | Gabriel Dos Reis <gdr@axiomatics.org> | 2017-01-02 14:03:55 -0800 |
---|---|---|
committer | Gabriel Dos Reis <gdr@axiomatics.org> | 2017-01-02 14:03:55 -0800 |
commit | b56562693a88f88e7c290de9e1dc18d96a0da792 (patch) | |
tree | 63944417087417292c9d3e41972fa7ac89dea0bc /src/boot | |
parent | 2bd3cc876cc90b8e28e0e8d88a5982f69729f867 (diff) | |
download | open-axiom-b56562693a88f88e7c290de9e1dc18d96a0da792.tar.gz |
Include a native entry point for parsing Boot source files, and for
transpiling to Lisp.
Diffstat (limited to 'src/boot')
-rw-r--r-- | src/boot/Makefile.am | 5 | ||||
-rw-r--r-- | src/boot/Makefile.in | 8 |
2 files changed, 8 insertions, 5 deletions
diff --git a/src/boot/Makefile.am b/src/boot/Makefile.am index 9a3b320a..5a4ecaa1 100644 --- a/src/boot/Makefile.am +++ b/src/boot/Makefile.am @@ -1,6 +1,6 @@ # Copyright (c) 1991-2002, The Numerical Algorithms Group Ltd. # All rights reserved. -# Copyright (C) 2007-2014, Gabriel Dos Reis. +# Copyright (C) 2007-2017, Gabriel Dos Reis. # All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -74,7 +74,8 @@ bemol_SOURCES = \ bemol.cc bemol_LDADD = \ - $(oa_target_libdir)/libOpenAxiom.a + $(oa_target_libdir)/libOpenAxiom.a \ + $(oa_target_libdir)/libopen-axiom-core.a oa_target_bootdir = $(oa_targetdir)/boot if OA_ECL_RT diff --git a/src/boot/Makefile.in b/src/boot/Makefile.in index c3d91bec..885b9636 100644 --- a/src/boot/Makefile.in +++ b/src/boot/Makefile.in @@ -16,7 +16,7 @@ # Copyright (c) 1991-2002, The Numerical Algorithms Group Ltd. # All rights reserved. -# Copyright (C) 2007-2014, Gabriel Dos Reis. +# Copyright (C) 2007-2017, Gabriel Dos Reis. # All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -157,7 +157,8 @@ CONFIG_CLEAN_VPATH_FILES = PROGRAMS = $(noinst_PROGRAMS) am_bemol_OBJECTS = bemol.$(OBJEXT) bemol_OBJECTS = $(am_bemol_OBJECTS) -bemol_DEPENDENCIES = $(oa_target_libdir)/libOpenAxiom.a +bemol_DEPENDENCIES = $(oa_target_libdir)/libOpenAxiom.a \ + $(oa_target_libdir)/libopen-axiom-core.a AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent @@ -461,7 +462,8 @@ bemol_SOURCES = \ bemol.cc bemol_LDADD = \ - $(oa_target_libdir)/libOpenAxiom.a + $(oa_target_libdir)/libOpenAxiom.a \ + $(oa_target_libdir)/libopen-axiom-core.a oa_target_bootdir = $(oa_targetdir)/boot @OA_ECL_RT_FALSE@oa_bootsys_linkset = |