forked from GNUsocial/gnu-social
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			227 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			227 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
# Warning: do not transform tabs to spaces in this file.
 | 
						|
 | 
						|
all : translations
 | 
						|
 | 
						|
trans = $(patsubst %.po,%.mo,$(wildcard */LC_MESSAGES/statusnet.po))
 | 
						|
 | 
						|
translations : $(trans)
 | 
						|
 | 
						|
clean :
 | 
						|
	rm -f $(trans)
 | 
						|
 | 
						|
%.mo : %.po
 | 
						|
	msgfmt -o $@ $<
 |