diff options
author | P. J. McDermott <pj@pehjota.net> | 2016-02-28 15:59:29 (EST) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2016-02-28 15:59:29 (EST) |
commit | 2f7c999bf91b79eb53ed926a12b2c97fcb2800b8 (patch) | |
tree | 530120f05838c3bf4312b8b3267896c22e8b9a73 /eshtrans/Makefile | |
parent | d06d1dca7699cb4aad08d92f49f5ddf91b88a539 (diff) | |
download | eggshell-2f7c999bf91b79eb53ed926a12b2c97fcb2800b8.zip eggshell-2f7c999bf91b79eb53ed926a12b2c97fcb2800b8.tar.gz eggshell-2f7c999bf91b79eb53ed926a12b2c97fcb2800b8.tar.bz2 |
eshtrans: Add eshrt
Diffstat (limited to 'eshtrans/Makefile')
-rw-r--r-- | eshtrans/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/eshtrans/Makefile b/eshtrans/Makefile index c924c92..2d3d626 100644 --- a/eshtrans/Makefile +++ b/eshtrans/Makefile @@ -15,6 +15,8 @@ WITH_PROF = n PROF_y = ../libeshprof/hooks.esh PROF = $(PROF_$(WITH_PROF)) +ESHRT = eshrt/eshrtbegin.sh2 eshrt/eshrtend.sh2 + bootstrap: stage3 stage1: @printf 'Stage 1:\n' @@ -41,9 +43,9 @@ eshtrans.stage1: $(OBJECTS1) cat $(OBJECTS1) >$@ printf 'main "$${@}"\n' >>$@ chmod a+x $@ -eshtrans.stage2: eshtrans.stage1 $(OBJECTS2) $(PROF) +eshtrans.stage2: eshtrans.stage1 $(OBJECTS2) $(PROF) $(ESHRT) ../eshld/eshld -o $@ $(OBJECTS2) $(PROF) -eshtrans.stage3: eshtrans.stage2 $(OBJECTS3) $(PROF) +eshtrans.stage3: eshtrans.stage2 $(OBJECTS3) $(PROF) $(ESHRT) ../eshld/eshld -o $@ $(OBJECTS3) $(PROF) $(OBJECTS1) $(OBJECTS2) $(OBJECTS3): |