aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2016-02-21 03:29:49 +0800
committerYen Chi Hsuan <yan12125@gmail.com>2016-02-21 03:32:03 +0800
commit101067de12e193c8ad42e1f474c9018eedadec9d (patch)
tree4c1eccaccd851556871c00ab69ad2459c31f92db
parentc1c05c67ea6087c3b0190c9f16cb9fdd8160e398 (diff)
downloadyoutube-dl-101067de12e193c8ad42e1f474c9018eedadec9d.tar.xz
Jython support - handle *.class files
-rw-r--r--.gitignore3
-rw-r--r--Makefile1
2 files changed, 3 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index 0422adf44..26dbde73d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,5 +1,6 @@
*.pyc
*.pyo
+*.class
*~
*.DS_Store
wine-py2exe/
@@ -32,4 +33,4 @@ test/testdata
.tox
youtube-dl.zsh
.idea
-.idea/* \ No newline at end of file
+.idea/*
diff --git a/Makefile b/Makefile
index cb449b7e6..afd7f4032 100644
--- a/Makefile
+++ b/Makefile
@@ -3,6 +3,7 @@ all: youtube-dl README.md CONTRIBUTING.md README.txt youtube-dl.1 youtube-dl.bas
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
find . -name "*.pyc" -delete
+ find . -name "*.class" -delete
PREFIX ?= /usr/local
BINDIR ?= $(PREFIX)/bin