aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@g5.osdl.org>2005-11-16 17:13:35 -0800
committerLinus Torvalds <torvalds@g5.osdl.org>2005-11-16 17:13:35 -0800
commit4659255f60114652d0839083b33a855ea1cbf9fc (patch)
tree0279fb9047736647a730d314526565a4f9f80407
parent3e0492ffd49aa2fb6e93b5cc175019df6419c477 (diff)
downloaduemacs-4659255f60114652d0839083b33a855ea1cbf9fc.tar.gz
Make "sparse" check target do a global sparse
Instead of iterating over all the source files, just check them all together since it works these days, and could potentially find cross-file issues.
-rw-r--r--makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/makefile b/makefile
index 659a4c0..36838d4 100644
--- a/makefile
+++ b/makefile
@@ -37,7 +37,7 @@ SPARSE=sparse
SPARSE_FLAGS=-D__BIG_ENDIAN__ -D__ppc__ -D__linux__ -D__unix__
sparse:
- for i in $(SRC); do $(SPARSE) $(SPARSE_FLAGS) $(DEFINES) $$i; done
+ $(SPARSE) $(SPARSE_FLAGS) $(DEFINES) $(SRC)
clean:
rm -f core lintout makeout tags makefile.bak *.o