From: Phil Burk Date: Thu, 17 Nov 2022 19:37:45 +0000 (+0000) Subject: Add pforthdic Makefile target X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=66093ef80c28b1be780480390120d9320f0c8da3;p=debian%2Fpforth Add pforthdic Makefile target This will allow quicker testing without generating the standalone image. make clean pforthdic --- 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."