Commit 267e0621 authored by Sam Hocevar's avatar Sam Hocevar

* bootstrap: Fixed the "clean" rule in module subdirectories.

parent b6563901
#! /bin/sh #! /bin/sh
## bootstrap file for the VLC media player ## bootstrap file for the VLC media player
## $Id: bootstrap,v 1.74 2003/10/23 15:30:22 sam Exp $ ## $Id: bootstrap,v 1.75 2003/10/24 11:53:59 sam Exp $
## ##
## Authors: Sam Hocevar <sam@zoy.org> ## Authors: Sam Hocevar <sam@zoy.org>
...@@ -216,17 +216,17 @@ EOF ...@@ -216,17 +216,17 @@ EOF
# work properly with any automake version I tested. # work properly with any automake version I tested.
cat >> modules/${dir}/Makefile.am << EOF cat >> modules/${dir}/Makefile.am << EOF
# The ${mod} plugin # The ${mod} plugin
clean: clean-${mod}
all: all-${mod}
EOF EOF
if [ "${NODIST}" != "#" ]; then cat >> modules/${dir}/Makefile.am << EOF if [ "${NODIST}" != "#" ]; then cat >> modules/${dir}/Makefile.am << EOF
clean: clean-${mod}
clean-${mod}: clean-${mod}:
-test -z "\$(nodist_SOURCES_${mod})" || rm -f \$(nodist_SOURCES_${mod}) -test -z "\$(nodist_SOURCES_${mod})" || rm -f \$(nodist_SOURCES_${mod})
EOF EOF
fi fi
cat >> modules/${dir}/Makefile.am << EOF cat >> modules/${dir}/Makefile.am << EOF
all: all-${mod}
all-${mod}: all-${mod}:
if BUILD_MOZILLA if BUILD_MOZILLA
@set fnord \$\$MAKEFLAGS; amf=\$\$2; \\ @set fnord \$\$MAKEFLAGS; amf=\$\$2; \\
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment