comparison Makefile @ 26791:daa735e525a4

install-mplayer and install-mencoder targets should depend on install-dirs.
author diego
date Sun, 18 May 2008 17:16:43 +0000
parents abfadf6ba341
children cf60ce406b0b
comparison
equal deleted inserted replaced
26790:abfadf6ba341 26791:daa735e525a4
811 811
812 812
813 813
814 ###### installation rules ####### 814 ###### installation rules #######
815 815
816 install: install-dirs $(INSTALL_TARGETS) 816 install: $(INSTALL_TARGETS)
817 817
818 install-dirs: 818 install-dirs:
819 $(INSTALL) -d $(BINDIR) 819 $(INSTALL) -d $(BINDIR)
820 $(INSTALL) -d $(CONFDIR) 820 $(INSTALL) -d $(CONFDIR)
821 821
822 install-%: %$(EXESUF) 822 install-%: %$(EXESUF) install-dirs
823 $(INSTALL) -m 755 $(INSTALLSTRIP) $< $(BINDIR) 823 $(INSTALL) -m 755 $(INSTALLSTRIP) $< $(BINDIR)
824 824
825 install-mplayer-man: $(foreach lang,$(MAN_LANG_ALL),install-mplayer-man-$(lang)) 825 install-mplayer-man: $(foreach lang,$(MAN_LANG_ALL),install-mplayer-man-$(lang))
826 install-mencoder-man: $(foreach lang,$(MAN_LANG_ALL),install-mencoder-man-$(lang)) 826 install-mencoder-man: $(foreach lang,$(MAN_LANG_ALL),install-mencoder-man-$(lang))
827 827