
Edit win32/config.mk to set the paths to your openssl and zlib headers and libraries. Then, from the root of the tree: nmake -f NMakefile voila.
19 lines
441 B
Plaintext
19 lines
441 B
Plaintext
!include "win32/config.mk"
|
|
|
|
CFLAGS=$(CFLAGS)
|
|
|
|
OBJECTS = $(INTDIR)\channel.obj $(INTDIR)\comp.obj $(INTDIR)\crypt.obj \
|
|
$(INTDIR)\hostkey.obj $(INTDIR)\kex.obj $(INTDIR)\mac.obj \
|
|
$(INTDIR)\misc.obj $(INTDIR)\packet.obj $(INTDIR)\scp.obj \
|
|
$(INTDIR)\session.obj $(INTDIR)\sftp.obj $(INTDIR)\userauth.obj
|
|
|
|
DLL=libssh2$(SUFFIX).dll
|
|
|
|
$(DLL): $(OBJECTS)
|
|
$(CC) -o $(DLL) $(DLLFLAGS) $(OBJECTS) $(LIBS)
|
|
|
|
all: $(DLL)
|
|
|
|
!include "win32/rules.mk"
|
|
|