Explorar o código

Latest makefile (changed by 336df3d - Using BUILDTOOLS_PATH to use nasm from existing copy of build tools)

Source commit: a05db1618282ba66e96c26ed6ac48f4869a1e8e2
Martin Prikryl %!s(int64=9) %!d(string=hai) anos
pai
achega
d4d6a74914
Modificáronse 1 ficheiros con 5 adicións e 1 borrados
  1. 5 1
      libs/openssl/Makefile

+ 5 - 1
libs/openssl/Makefile

@@ -39,7 +39,11 @@ CP=copy
 RM=del
 MKDIR=-mkdir
 MKLIB=tlib /P128 /C
-ASM=nasm -f obj -d__omf__
+
+!ifndef BUILDTOOLS_PATH
+BUILDTOOLS_PATH=..\..\buildtools
+!endif
+ASM=$(BUILDTOOLS_PATH)\tools\nasm -f obj -d__omf__
 
 ######################################################
 # You should not need to touch anything below this point