From 8f9042a1514f17b0d6e7bb597b7c74e1a02a4e91 Mon Sep 17 00:00:00 2001 From: Andrew Schwartzmeyer Date: Mon, 2 Nov 2015 15:54:26 -0800 Subject: [PATCH] Fix host Makefile for file renames --- src/host/host.mk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/host/host.mk b/src/host/host.mk index f9cd879c7..fd3db4182 100644 --- a/src/host/host.mk +++ b/src/host/host.mk @@ -3,12 +3,12 @@ # Currently there is powershell-run.exe, which is a very generic interactive and # non-interactive host -POWERSHELL_RUN_FOLDER=$(MONAD)/src/powershell-run -POWERSHELL_RUN_SRCS=$(addprefix $(POWERSHELL_RUN_FOLDER)/, main.cs host.cs ui.cs rawui.cs readline.cs powershell-run.assembly-info.cs) +POWERSHELL_RUN_FOLDER=$(MONAD)/src/host +POWERSHELL_RUN_SRCS=$(addprefix $(POWERSHELL_RUN_FOLDER)/, main.cs host.cs ui.cs rawui.cs readline.cs powershell.assembly-info.cs) # direct dependencies to be linked in POWERSHELL_RUN_DEPS=$(addprefix $(PSLIB)/, System.Management.Automation.dll Microsoft.PowerShell.Commands.Management.dll $(ASSEMBLY_LOAD_CONTEXT_TARGET)) POWERSHELL_RUN_REFS=$(addprefix -r:, $(POWERSHELL_RUN_DEPS)) -$(PSLIB)/powershell-run.exe: $(POWERSHELL_RUN_SRCS) $(POWERSHELL_RUN_DEPS) +$(PSLIB)/powershell.exe: $(POWERSHELL_RUN_SRCS) $(POWERSHELL_RUN_DEPS) $(CSC) -out:$@ -noconfig -nostdlib -target:exe $(POWERSHELL_RUN_REFS) $(COREREF) $(POWERSHELL_RUN_SRCS)