30 lines
666 B
Makefile
30 lines
666 B
Makefile
|
|
# Tweak these for your system
|
|
OPENSSLINC=..\libssh2_build\include
|
|
OPENSSLLIB=..\libssh2_build\lib
|
|
|
|
ZLIBINC=-DLIBSSH2_HAVE_ZLIB=1 /I..\libssh2_build\include
|
|
ZLIBLIB=..\libssh2_build\lib
|
|
|
|
!if "$(TARGET)" == ""
|
|
TARGET=Release
|
|
!endif
|
|
|
|
!if "$(TARGET)" == "Debug"
|
|
SUFFIX=_debug
|
|
CPPFLAGS=/Od /MDd
|
|
DLLFLAGS=/DEBUG /LDd
|
|
!else
|
|
CPPFLAGS=/Og /Oi /O2 /Oy /GF /Y- /MD /DNDEBUG
|
|
DLLFLAGS=/DEBUG /LD
|
|
!endif
|
|
|
|
CPPFLAGS=/nologo /GL /Zi /EHsc $(CPPFLAGS) /Iwin32 /Iinclude /I$(OPENSSLINC) $(ZLIBINC) -DLIBSSH2_WIN32
|
|
CFLAGS=$(CPPFLAGS)
|
|
DLLFLAGS=$(CFLAGS) $(DLLFLAGS)
|
|
LIBS=$(OPENSSLLIB)\libeay32.lib $(OPENSSLLIB)\ssleay32.lib ws2_32.lib $(ZLIBLIB)\zlib.lib
|
|
|
|
INTDIR=$(TARGET)\$(SUBDIR)
|
|
|
|
|