# HG changeset patch # User bsmith@81767d24-ef19-dc11-ae90-00e081727c95 # Date 1601848529 0 # Node ID a89841c500f839921a4c88b675a2f5a54c4ad598 # Parent b08df531fd71c76267bb865b5f2f64cd38404bde Win: Clang/LLVM tools don't seem to accept / to specify options... So switch everything to use - instead since it is valid for both toolchains. diff -r b08df531fd71 -r a89841c500f8 makefile.vc --- a/makefile.vc Sun Oct 04 21:24:22 2020 +0000 +++ b/makefile.vc Sun Oct 04 21:55:29 2020 +0000 @@ -152,8 +152,8 @@ $(OBJS) $(RES) $(LIBS) << - $(WLIB) /def:$(DEFFILE) /machine:$(TARGET_CPU) /out:dw.lib - mt.exe /manifest dw.dll.manifest $(SRCDIR)\win\dw.dll.$(TARGET_CPU).manifest /outputresource:dw.dll;2 + $(WLIB) -def:$(DEFFILE) -machine:$(TARGET_CPU) -out:dw.lib + mt.exe -manifest dw.dll.manifest $(SRCDIR)\win\dw.dll.$(TARGET_CPU).manifest -outputresource:dw.dll;2 -erase dw.dll.manifest copy dw.lib $(DWLIBDIR)\dw.lib copy dw.dll $(DWDLLDIR)\dw.dll @@ -167,8 +167,8 @@ $(OBJS2) $(RES) $(LIBS) << - $(WLIB) /def:$(DEFFILE2) /machine:$(TARGET_CPU) /out:dwcompat.lib - mt.exe /manifest dwcompat.dll.manifest /outputresource:dwcompat.dll;2 + $(WLIB) -def:$(DEFFILE2) -machine:$(TARGET_CPU) -out:dwcompat.lib + mt.exe -manifest dwcompat.dll.manifest -outputresource:dwcompat.dll;2 -erase dwcompat.dll.manifest copy dwcompat.lib $(DWLIBDIR)\dwcompat.lib copy dwcompat.dll $(DWDLLDIR)\dwcompat.dll