Mercurial > audlegacy
changeset 3660:c54dfcdc839e
Add missing targets to .PHONY.
author | Jonathan Schleifer <js@h3c.de> |
---|---|
date | Thu, 27 Sep 2007 21:59:11 +0200 |
parents | e240bcea4f7a |
children | 19331a6b5d8e |
files | buildsys.mk.in src/audacious/Makefile |
diffstat | 2 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/buildsys.mk.in Thu Sep 27 21:55:13 2007 +0200 +++ b/buildsys.mk.in Thu Sep 27 21:59:11 2007 +0200 @@ -75,7 +75,7 @@ .SILENT: .SUFFIXES: .beam .c .cc .cxx .d .erl .m -.PHONY: all subdirs depend install uninstall clean distclean +.PHONY: all subdirs pre-depend depend install install-extra uninstall uninstall-extra clean distclean all: for i in subdirs depend ${STATIC_LIB} ${STATIC_LIB_NOINST} ${LIB} ${LIB_NOINST} ${PLUGIN} ${PLUGIN_NOINST} ${PROG} ${PROG_NOINST}; do \
--- a/src/audacious/Makefile Thu Sep 27 21:55:13 2007 +0200 +++ b/src/audacious/Makefile Thu Sep 27 21:59:11 2007 +0200 @@ -217,7 +217,7 @@ ${DBUS_BINDING_TOOL} --mode=glib-client --prefix=audacious_rc objects.xml > $@ install-extra: - if test x"${PROG_IMLIB_NEEDED}" = x"yes"; then \ + if test x"${PROG_IMPLIB_NEEDED}" = x"yes"; then \ for i in ${PROG}; do \ ${INSTALL_STATUS}; \ if ${MKDIR_P} ${DESTDIR}${libdir} && install -m 644 lib$$i.a ${DESTDIR}${libdir}/lib$$i.a; then \ @@ -229,7 +229,7 @@ fi uninstall-extra: - if test x"${PROG_IMLIB_NEEDED}" = x"yes"; then \ + if test x"${PROG_IMPLIB_NEEDED}" = x"yes"; then \ for i in ${PROG}; do \ if test -f ${DESTDIR}${libdir}/lib$$i.a; then \ if rm -f ${DESTDIR}${libdir}/lib$$i.a; then