changeset 2169:a89841c500f8

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.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Sun, 04 Oct 2020 21:55:29 +0000
parents b08df531fd71
children d871f636b46e
files makefile.vc
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- 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