mirror of
				https://github.com/python/cpython.git
				synced 2025-11-03 19:34:08 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			286 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			286 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
all:
 | 
						|
		@echo Nothing to make in this directory.
 | 
						|
 | 
						|
clean:
 | 
						|
		find . '(' -name '*.pyc' -o -name '*.fdc' \
 | 
						|
			-o -name core -o -name '*~' \
 | 
						|
			-o -name '[@,#]*' -o -name '*.old' \
 | 
						|
			-o -name '*.orig' -o -name '*.rej' \
 | 
						|
			-o -name '*.bak' ')' \
 | 
						|
			-print -exec rm -f {} ';'
 | 
						|
 | 
						|
clobber:	clean
 |