* [Linux-ia64] [PATCH] arch/ia64/tools/Makefile
@ 2002-07-23 23:58 David N. Lombard
0 siblings, 0 replies; only message in thread
From: David N. Lombard @ 2002-07-23 23:58 UTC (permalink / raw)
To: linux-ia64
[-- Attachment #1: Type: text/plain, Size: 603 bytes --]
The arch/ia64/tools/Makefile has an empty action for the mrproper
target. The result is that arch/ia64/tools/print_offsets.s,
arch/ia64/tools/print_offsets, and arch/ia64/tools/offsets.h remain
after a "make mrproper". The files are deleted with "make distclean".
So, this could be a (subtle) intended difference between the mrproper
and distclean targets, but that seems unlikely.
The attached patch moves the file deletion from the clean target
(invoked via distclean) to the mrproper target; the distclean target
still results in the files being deleted.
--
David N. Lombard
MSC.Software
[-- Attachment #2: ia64-tools.diff --]
[-- Type: text/plain, Size: 255 bytes --]
--- arch/ia64/tools/Makefile.orig Mon Feb 25 11:37:53 2002
+++ arch/ia64/tools/Makefile Tue Jul 23 11:27:50 2002
@@ -5,6 +5,7 @@
all:
mrproper:
+ rm -f print_offsets.s print_offsets offsets.h
clean:
rm -f print_offsets.s print_offsets offsets.h
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2002-07-23 23:58 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-07-23 23:58 [Linux-ia64] [PATCH] arch/ia64/tools/Makefile David N. Lombard
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.