From 206a35b7368df3de3e69b76f3bf668444f3f3363 Mon Sep 17 00:00:00 2001 From: pierre Date: Wed, 7 Apr 1999 15:26:50 +0000 Subject: [PATCH] + added COMPLETE env for triple compilation test --- compiler/Makefile | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/compiler/Makefile b/compiler/Makefile index c901c60d1f..e0379a1b85 100644 --- a/compiler/Makefile +++ b/compiler/Makefile @@ -257,10 +257,21 @@ msgtxt.inc: $(MSGFILE) $(MSG2INC) msg: msgtxt.inc # Make only the compiler +ifndef COMPLETE $(EXENAME) : $(wildcard *.pas) $(wildcard *.inc) $(COMPILER) pp.pas $(EXECPPAS) $(MOVE) $(PPEXENAME) $(EXENAME) +else +$(EXENAME) : $(wildcard *.pas) $(wildcard *.inc) + $(COMPILER) $(LOCALOPT) pp.pas + $(EXECPPAS) + $(COMPILER) $(LOCALOPT) pp.pas + $(EXECPPAS) + $(COMPILER) $(LOCALOPT) pp.pas + $(EXECPPAS) + $(MOVE) $(PPEXENAME) $(EXENAME) +endif # This target remakes the units with the currently made version remake: $(EXENAME) @@ -372,7 +383,10 @@ $(M68KEXENAME): $(PASFILES) $(INCFILES) # # $Log$ -# Revision 1.24 1999-04-01 22:05:16 peter +# Revision 1.25 1999-04-07 15:26:50 pierre +# + added COMPLETE env for triple compilation test +# +# Revision 1.24 1999/04/01 22:05:16 peter # * only 'make' now does a make all instead of make info # # Revision 1.23 1999/03/24 23:12:54 peter