- libnetsock - internal implementation of a socket on the lwip server side. it encapsulates the asynchronous protocol - lwip server - uses libnetsock to work with the asynchronous protocol
		
			
				
	
	
		
			10 lines
		
	
	
		
			192 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			192 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
LIB = netsock
 | 
						|
 | 
						|
CPPFLAGS += -I${.CURDIR}/include/ -D_SYSTEM -D_MINIX
 | 
						|
CPPFLAGS+= -I${.CURDIR}/../../lib/liblwip/include
 | 
						|
CFLAGS += -Wall -Wextra -std=c99
 | 
						|
 | 
						|
SRCS += socket.c
 | 
						|
 | 
						|
.include <bsd.lib.mk>
 |