summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-10-25 17:39:48 +0200
committerwm4 <wm4@nowhere>2013-10-25 17:40:49 +0200
commit00729640855e5185a862d2ff6b63b578d0d34a4a (patch)
tree9b41646e14548e08f0a4ea259f919ebec9bd123d
parent1f071f84ae92809421d90fad78111e4cd96cab29 (diff)
downloadmpv-build-00729640855e5185a862d2ff6b63b578d0d34a4a.tar.bz2
mpv-build-00729640855e5185a862d2ff6b63b578d0d34a4a.tar.xz
Add uninstall target
Patch by pfor on IRC, but with the uninstall target added to PHONY too. Untested.
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 9650a33..fc3c7f5 100644
--- a/Makefile
+++ b/Makefile
@@ -32,10 +32,13 @@ noconfig:
install:
$(MAKE) -C mpv install
+uninstall:
+ $(MAKE) -C mpv uninstall
+
clean:
-rm -rf ffmpeg_build build_libs
#-$(MAKE) -C fribidi distclean
-$(MAKE) -C libass distclean
-$(MAKE) -C mpv distclean
-.PHONY: mpv-config mpv ffmpeg-config ffmpeg fribidi-config fribidi libass-config libass noconfig install clean
+.PHONY: mpv-config mpv ffmpeg-config ffmpeg fribidi-config fribidi libass-config libass noconfig install uninstall clean