Jython support - handle *.class files
This commit is contained in:
		
							parent
							
								
									c1c05c67ea
								
							
						
					
					
						commit
						101067de12
					
				
					 2 changed files with 3 additions and 1 deletions
				
			
		
							
								
								
									
										1
									
								
								.gitignore
									
										
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								.gitignore
									
										
									
									
										vendored
									
									
								
							| 
						 | 
					@ -1,5 +1,6 @@
 | 
				
			||||||
*.pyc
 | 
					*.pyc
 | 
				
			||||||
*.pyo
 | 
					*.pyo
 | 
				
			||||||
 | 
					*.class
 | 
				
			||||||
*~
 | 
					*~
 | 
				
			||||||
*.DS_Store
 | 
					*.DS_Store
 | 
				
			||||||
wine-py2exe/
 | 
					wine-py2exe/
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
							
								
								
									
										1
									
								
								Makefile
									
										
									
									
									
								
							
							
						
						
									
										1
									
								
								Makefile
									
										
									
									
									
								
							| 
						 | 
					@ -3,6 +3,7 @@ all: youtube-dl README.md CONTRIBUTING.md README.txt youtube-dl.1 youtube-dl.bas
 | 
				
			||||||
clean:
 | 
					clean:
 | 
				
			||||||
	rm -rf youtube-dl.1.temp.md youtube-dl.1 youtube-dl.bash-completion README.txt MANIFEST build/ dist/ .coverage cover/ youtube-dl.tar.gz youtube-dl.zsh youtube-dl.fish *.dump *.part *.info.json *.mp4 *.flv *.mp3 *.avi CONTRIBUTING.md.tmp youtube-dl youtube-dl.exe
 | 
						rm -rf youtube-dl.1.temp.md youtube-dl.1 youtube-dl.bash-completion README.txt MANIFEST build/ dist/ .coverage cover/ youtube-dl.tar.gz youtube-dl.zsh youtube-dl.fish *.dump *.part *.info.json *.mp4 *.flv *.mp3 *.avi CONTRIBUTING.md.tmp youtube-dl youtube-dl.exe
 | 
				
			||||||
	find . -name "*.pyc" -delete
 | 
						find . -name "*.pyc" -delete
 | 
				
			||||||
 | 
						find . -name "*.class" -delete
 | 
				
			||||||
 | 
					
 | 
				
			||||||
PREFIX ?= /usr/local
 | 
					PREFIX ?= /usr/local
 | 
				
			||||||
BINDIR ?= $(PREFIX)/bin
 | 
					BINDIR ?= $(PREFIX)/bin
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue