# HG changeset patch # User Jonathan Schleifer # Date 1190923151 -7200 # Node ID c54dfcdc839ed3aa79105e45fe96177a9a46529e # Parent e240bcea4f7a80669842062539743fea2c66ff75 Add missing targets to .PHONY. diff -r e240bcea4f7a -r c54dfcdc839e buildsys.mk.in --- 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 \ diff -r e240bcea4f7a -r c54dfcdc839e src/audacious/Makefile --- 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