From 66093ef80c28b1be780480390120d9320f0c8da3 Mon Sep 17 00:00:00 2001 From: Phil Burk Date: Thu, 17 Nov 2022 19:37:45 +0000 Subject: [PATCH] Add pforthdic Makefile target This will allow quicker testing without generating the standalone image. make clean pforthdic --- platforms/unix/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/platforms/unix/Makefile b/platforms/unix/Makefile index 626d0ce..7b1d74b 100644 --- a/platforms/unix/Makefile +++ b/platforms/unix/Makefile @@ -115,6 +115,8 @@ $(PFORTHAPP): $(PFDICDAT) $(PFEMBOBJS) # target aliases pfdicapp: $(PFDICAPP) +pforthdic: $(PFORTHDIC) + pfdicdat: $(PFDICDAT) pforthapp: $(PFORTHAPP) @@ -123,7 +125,8 @@ help: @echo "Use 'make all' to build standalone pForth executable." @echo "PForth can be built in several stages using these targets:" @echo " pfdicapp = executable pForth with minimal dictionary. All from 'C'." - @echo " pfdicdat = image of full dictionary build by compiling Forth code." + @echo " pforthdic = executable pforth plus pforth.dic file" + @echo " pfdicdat = header image of full dictionary build by compiling Forth code." @echo " pforthapp = executable with embedded dictionary image. DEFAULT 'all' target." @echo "" @echo " The file 'fth/pfdicdat.h' is generated by pForth. It contains a binary image of the Forth dictionary." -- 2.47.2