mirror of
				https://gitlab.labs.nic.cz/labs/bird.git
				synced 2024-05-11 16:54:54 +00:00 
			
		
		
		
	The BIRD client code is restructured that most of the code (including main function) is shared in client.c, while birdc.c and birdcl.c contain just I/O-specific callbacks. This removes all duplicated code from variant-specific files.
		
			
				
	
	
		
			12 lines
		
	
	
		
			198 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			198 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
source=commands.c util.c client.c
 | 
						|
root-rel=../
 | 
						|
dir-name=client
 | 
						|
 | 
						|
clients := $(client) birdcl
 | 
						|
 | 
						|
source-dep := $(source) $(addsuffix .c,$(clients))
 | 
						|
 | 
						|
subdir: $(addsuffix .o,$(clients))
 | 
						|
 | 
						|
include ../Rules
 |