Răsfoiți Sursa

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

Source commit: a05db1618282ba66e96c26ed6ac48f4869a1e8e2
Martin Prikryl 9 ani în urmă
părinte
comite
d4d6a74914
1 a modificat fișierele cu 5 adăugiri și 1 ștergeri
  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