mirror of
				https://gitlab.labs.nic.cz/labs/bird.git
				synced 2024-05-11 16:54:54 +00:00 
			
		
		
		
	- Unit Testing Framework (BirdTest) - Integration of BirdTest into the BIRD build system - Tests for several BIRD modules Based on squashed Pavel Tvrdik's int-test branch, updated for current int-new branch.
		
			
				
	
	
		
			9 lines
		
	
	
		
			238 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			238 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
src := filter.c f-util.c tree.c trie.c
 | 
						|
obj := $(src-o-files)
 | 
						|
$(all-daemon)
 | 
						|
$(cf-local)
 | 
						|
 | 
						|
tests_src := tree_test.c filter_test.c trie_test.c
 | 
						|
tests_targets := $(tests_targets) $(tests-target-files)
 | 
						|
tests_objs := $(tests_objs) $(src-o-files)
 |