9 lines
		
	
	
		
			141 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			141 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
subdirs= freechat-client/ server/
 | 
						|
 | 
						|
# for now we just build everything normally
 | 
						|
all:
 | 
						|
	for dir in $(subdirs);do \
 | 
						|
		$(MAKE) -C $$dir; \
 | 
						|
	done
 | 
						|
 |