1
mirror of https://github.com/mpv-player/mpv synced 2024-07-27 17:48:22 +02:00

Remove one level of indirection on VIDIX install/uninstall.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21350 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2006-11-28 09:33:53 +00:00
parent 94ec6dbf31
commit 5dbf242b15
2 changed files with 2 additions and 8 deletions

View File

@ -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:

View File

@ -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