summaryrefslogtreecommitdiff
path: root/libs/libssh2/src/NMakefile
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2023-06-09 21:40:16 +0300
committerGeorge Hazan <george.hazan@gmail.com>2023-06-09 21:40:16 +0300
commit927f00cc19b7239a1fe12abe30b472d61b753d8d (patch)
tree68a190dd83dc2dcceb82464a1953f2701af2a109 /libs/libssh2/src/NMakefile
parent1b241cad53b8c3c5300409fe681de18e636dcf3d (diff)
fixes #3551 (Update libssh2 to 1.11.0)
Diffstat (limited to 'libs/libssh2/src/NMakefile')
-rw-r--r--libs/libssh2/src/NMakefile30
1 files changed, 0 insertions, 30 deletions
diff --git a/libs/libssh2/src/NMakefile b/libs/libssh2/src/NMakefile
deleted file mode 100644
index 0c4853f1df..0000000000
--- a/libs/libssh2/src/NMakefile
+++ /dev/null
@@ -1,30 +0,0 @@
-!include "win32/config.mk"
-
-!include "win32/objects.mk"
-
-CFLAGS=$(CFLAGS)
-
-AR = lib
-ARFLAGS = -nologo /LTCG
-
-RESOURCE=$(INTDIR)\libssh2.res
-DLL=libssh2$(SUFFIX).dll
-STATICLIB=$(INTDIR)\libssh2.lib
-
-!if "$(BUILD_STATIC_LIB)" == ""
-all: $(DLL)
-!else
-all: $(STATICLIB)
-!endif
-
-$(DLL): $(OBJECTS) $(RESOURCE)
- $(CC) -o $(DLL) $(DLLFLAGS) $(OBJECTS) $(RESOURCE) $(LIBS)
-
-$(STATICLIB): $(OBJECTS)
- $(AR) $(ARFLAGS) -out:$@ $(OBJECTS)
-
-$(RESOURCE): win32\libssh2.rc
- $(RC) $(RCFLAGS) /Fo"$@" $?
-
-!include "win32/rules.mk"
-