From: Miguel de Icaza Date: Tue, 6 Sep 2016 01:38:47 +0000 (-0400) Subject: [mcs/Makefile] make the 'btest' (bootstrap test) target work again X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;h=a14e0d7c4b357f6993f30efcce0135d44c5b9317;p=mono.git [mcs/Makefile] make the 'btest' (bootstrap test) target work again --- diff --git a/mcs/mcs/Makefile b/mcs/mcs/Makefile index 01285712a2b..9c4b6a172a0 100644 --- a/mcs/mcs/Makefile +++ b/mcs/mcs/Makefile @@ -68,10 +68,10 @@ btest: mcs2.exe mcs3.exe ls -l mcs2.exe mcs3.exe mcs2.exe: $(PROGRAM) - $(TIME) $(RUNTIME) $(RUNTIME_FLAGS) $(PROGRAM) $(USE_MCS_FLAGS) -target:exe -out:$@ $(BUILT_SOURCES) @$(response) + $(TIME) $(RUNTIME) $(RUNTIME_FLAGS) $(PROGRAM) $(USE_MCS_FLAGS) $(MCS_REFERENCES) -target:exe -out:$@ $(BUILT_SOURCES) $(EXTRA_SOURCES) @$(response) mcs3.exe: mcs2.exe - $(TIME) $(RUNTIME) $(RUNTIME_FLAGS) ./mcs2.exe $(USE_MCS_FLAGS) -target:exe -out:$@ $(BUILT_SOURCES) @$(response) + $(TIME) $(RUNTIME) $(RUNTIME_FLAGS) ./mcs2.exe $(USE_MCS_FLAGS) $(MCS_REFERENCES) -target:exe -out:$@ $(BUILT_SOURCES) $(EXTRA_SOURCES) @$(response) wc: wc -l $(BUILT_SOURCES) `cat $(sourcefile)`