summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile4
-rw-r--r--vidix/Makefile6
2 files changed, 2 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index ba1cb6aa23..1110c79bf7 100644
--- a/Makefile
+++ b/Makefile
@@ -251,7 +251,7 @@ codecs2html$(EXESUF): mp_msg.o
install: $(ALL_PRG)
ifeq ($(VIDIX),yes)
$(MAKE) -C libdha install
- $(MAKE) -C vidix install
+ $(MAKE) -C vidix/drivers install
endif
$(INSTALL) -d $(BINDIR)
$(INSTALL) -m 755 $(INSTALLSTRIP) mplayer$(EXESUF) \
@@ -307,7 +307,7 @@ uninstall:
fi ; \
done
$(MAKE) -C libdha uninstall
- $(MAKE) -C vidix uninstall
+ $(MAKE) -C vidix/drivers uninstall
@echo "Uninstall completed"
dirclean:
diff --git a/vidix/Makefile b/vidix/Makefile
index a86c404446..bd85d1552a 100644
--- a/vidix/Makefile
+++ b/vidix/Makefile
@@ -35,12 +35,6 @@ dep depend:
$(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
$(MAKE) -C drivers depend
-install:
- $(MAKE) -C drivers install
-
-uninstall:
- $(MAKE) -C drivers uninstall
-
ifneq ($(wildcard .depend),)
include .depend
endif