mirror of
https://github.com/rfivet/uemacs.git
synced 2025-11-19 09:41:37 -05:00
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.
This commit is contained in:
2
makefile
2
makefile
@@ -37,7 +37,7 @@ SPARSE=sparse
|
|||||||
SPARSE_FLAGS=-D__BIG_ENDIAN__ -D__ppc__ -D__linux__ -D__unix__
|
SPARSE_FLAGS=-D__BIG_ENDIAN__ -D__ppc__ -D__linux__ -D__unix__
|
||||||
|
|
||||||
sparse:
|
sparse:
|
||||||
for i in $(SRC); do $(SPARSE) $(SPARSE_FLAGS) $(DEFINES) $$i; done
|
$(SPARSE) $(SPARSE_FLAGS) $(DEFINES) $(SRC)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f core lintout makeout tags makefile.bak *.o
|
rm -f core lintout makeout tags makefile.bak *.o
|
||||||
|
|||||||
Reference in New Issue
Block a user