aboutsummaryrefslogtreecommitdiffstats
path: root/tools/libfsimage/Rules.mk
diff options
context:
space:
mode:
authorDaniel Kiper <daniel.kiper@oracle.com>2013-05-10 17:33:54 +0200
committerIan Jackson <Ian.Jackson@eu.citrix.com>2013-07-17 12:29:34 +0100
commitede071d56bb9947ee6bcf2b78f7614ae6bec4dd1 (patch)
tree1c8e4fec1a078ac77f93e733ebebe555e235fe29 /tools/libfsimage/Rules.mk
parenta2b1a38013f6ca8399808cfa94bf84ea4f1133ac (diff)
downloadxen-ede071d56bb9947ee6bcf2b78f7614ae6bec4dd1.tar.gz
xen-ede071d56bb9947ee6bcf2b78f7614ae6bec4dd1.tar.bz2
xen-ede071d56bb9947ee6bcf2b78f7614ae6bec4dd1.zip
tools/libfsimage: Fix clean and distclean make targets
If there is a single colon for a given target and the target is redefined in another place (e.g. in included file) then make executes only new target and displays following warning: Makefile:35: warning: overriding commands for target `clean' tools/libfsimage/common/../../../tools/libfsimage/Rules.mk:25: warning: ignoring old commands for target `clean' To cope with that issue define all required targets as double-colon rules. Additionally, remove some redundant stuff. Signed-off-by: Daniel Kiper <daniel.kiper@oracle.com> Acked-by: Ian Campbell <ian.campbell@citrix.com> (cherry picked from commit 667d8a84b244d02e9c6a2d02d6a02fc90c2efb4e)
Diffstat (limited to 'tools/libfsimage/Rules.mk')
-rw-r--r--tools/libfsimage/Rules.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/libfsimage/Rules.mk b/tools/libfsimage/Rules.mk
index 0e29c25bb3..81d79817cf 100644
--- a/tools/libfsimage/Rules.mk
+++ b/tools/libfsimage/Rules.mk
@@ -26,7 +26,7 @@ fs-install: fs-all
$(FSLIB): $(PIC_OBJS)
$(CC) $(CFLAGS) $(LDFLAGS) $(SHLIB_LDFLAGS) -o $@ $^ -lfsimage $(FS_LIBDEPS)
-clean distclean:
+clean distclean::
rm -f $(PIC_OBJS) $(FSLIB) $(DEPS)
-include $(DEPS)