 52be5c0afb
			
		
	
	
		52be5c0afb
		
	
	
	
	
		
			
			- rename start_vtreefs to run_vtreefs, since the function returns upon termination these days; - add get_inode_slots function to retrieve the number of indexed slots; - add support for extra per-inode data for arbitrary storage. Change-Id: If2d365d7b478a1cecc9e20fb2b3e70c1a1cf7243
		
			
				
	
	
		
			22 lines
		
	
	
		
			223 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			223 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| # Makefile for libvtreefs
 | |
| 
 | |
| NOGCCERROR=yes
 | |
| 
 | |
| CPPFLAGS+= -D_MINIX_SYSTEM
 | |
| 
 | |
| LIB=	vtreefs
 | |
| 
 | |
| SRCS=	\
 | |
| 	extra.c \
 | |
| 	file.c \
 | |
| 	inode.c \
 | |
| 	link.c \
 | |
| 	mount.c \
 | |
| 	path.c \
 | |
| 	sdbm.c \
 | |
| 	stadir.c \
 | |
| 	table.c \
 | |
| 	vtreefs.c
 | |
| 
 | |
| .include <bsd.lib.mk>
 |