Make dnotify_test.c source file and add it to Makefile so that bitrot can be prevented. Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com> Cc: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
		
			
				
	
	
		
			8 lines
		
	
	
	
		
			217 B
			
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
	
		
			217 B
			
		
	
	
	
		
			Makefile
		
	
	
	
	
	
# kbuild trick to avoid linker error. Can be omitted if a module is built.
 | 
						|
obj- := dummy.o
 | 
						|
 | 
						|
# List of programs to build
 | 
						|
hostprogs-y := dnotify_test
 | 
						|
 | 
						|
# Tell kbuild to always build the programs
 | 
						|
always := $(hostprogs-y)
 |