mirror of
				https://github.com/libssh2/libssh2.git
				synced 2025-10-30 12:05:34 +03:00 
			
		
		
		
	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.
		
			
				
	
	
		
			16 lines
		
	
	
		
			239 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			239 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| 
 | |
| all-sub: $(INTDIR) all
 | |
| 
 | |
| clean-sub: clean
 | |
| 
 | |
| $(INTDIR):
 | |
| !if "$(SRCDIR)" == ""
 | |
| 	@if not exist $(TARGET) mkdir $(TARGET)
 | |
| !endif
 | |
| 	@if not exist $(INTDIR) mkdir $(INTDIR)
 | |
| 
 | |
| {$(SUBDIR)}.c{$(INTDIR)}.obj::
 | |
| 	$(CC) -c $(CFLAGS) /Fo"$(INTDIR)\\" $<
 | |
| 
 | |
| 
 |