libssh2/src/NMakefile
Guenter Knauf 52b8da7dfa Added hack to make use of Makefile.inc.
This should avoid further maintainance of the objects list.
2012-10-24 03:22:07 +02:00

21 lines
325 B
Plaintext
Executable File

!include "win32/config.mk"
!include "win32/objects.mk"
CFLAGS=$(CFLAGS)
RESOURCE=$(INTDIR)\libssh2.res
DLL=libssh2$(SUFFIX).dll
all: $(DLL)
$(DLL): $(OBJECTS) $(RESOURCE)
$(CC) -o $(DLL) $(DLLFLAGS) $(OBJECTS) $(RESOURCE) $(LIBS)
$(RESOURCE): win32\libssh2.rc
$(RC) $(RCFLAGS) /Fo"$@" $?
!include "win32/rules.mk"