aboutsummaryrefslogtreecommitdiff
path: root/src/boot/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'src/boot/Makefile.in')
-rw-r--r--src/boot/Makefile.in7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/boot/Makefile.in b/src/boot/Makefile.in
index ab05adca..c6fad676 100644
--- a/src/boot/Makefile.in
+++ b/src/boot/Makefile.in
@@ -60,8 +60,7 @@ boot_objects = initial-env.$(LNKEXT) $(boot_sources:.boot=.$(LNKEXT))
oa_target_bootdir = $(axiom_targetdir)/boot
ifeq (@axiom_lisp_flavor@,ecl)
-oa_boot_linkset = \
- $(addprefix $(oa_target_bootdir)/, $(boot_objects))
+oa_boot_linkset = $(oa_target_bootdir)/linkset
else
oa_boot_linkset =
endif
@@ -88,6 +87,10 @@ $(axiom_target_bindir)/bootsys$(EXEEXT): stage2/bootsys$(EXEEXT)
$(mkdir_p) $(axiom_target_bindir)
cp -p $< $@
+$(oa_boot_linkset): $(addprefix $(oa_target_bootdir)/, $(boot_objects))
+ rm -f $@
+ echo '($(patsubst %, "%", $(boot_objects)))' > $@
+
$(oa_target_bootdir)/%.$(LNKEXT): stage2/%.$(LNKEXT) $(oa_target_bootdir)
cp $< $@