mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-01-08 16:30:27 +01:00
Remove the duplication of the compile line and enable shave to replace it entirely with a "CHECK $header". This should make errors more obvious.
32 lines
1.1 KiB
Text
32 lines
1.1 KiB
Text
|
|
SPARSE = sparse
|
|
sparse:
|
|
@echo Checking enabled sources with sparse checker
|
|
@status=true; for f in $(enabled_cairo_sources); do \
|
|
echo $(SPARSE) $(PREPROCESS_ARGS) $(srcdir)/$$f; \
|
|
$(SPARSE) $(PREPROCESS_ARGS) $(srcdir)/$$f || status=false; \
|
|
done; $$status
|
|
|
|
SPLINT = splint -badflag
|
|
splint:
|
|
@echo Checking enabled sources with splint checker
|
|
@status=true; for f in $(enabled_cairo_sources); do \
|
|
echo $(SPLINT) $(PREPROCESS_ARGS) $(srcdir)/$$f; \
|
|
$(SPLINT) $(PREPROCESS_ARGS) $(srcdir)/$$f || status=false; \
|
|
done; $$status
|
|
|
|
UNO = uno
|
|
uno:
|
|
@echo Checking enabled sources with uno checker
|
|
cd $(srcdir); $(UNO) $(PREPROCESS_ARGS) -DHAVE_CONFIG_H -U__GNUC__ $(enabled_cairo_sources)
|
|
|
|
headers-standalone: $(enabled_cairo_headers) $(enabled_cairo_private)
|
|
@echo Checking that enabled public/private headers can be compiled standalone
|
|
@status=true; for f in $(enabled_cairo_headers) $(enabled_cairo_private); do \
|
|
echo " CHECK $$f"; \
|
|
$(COMPILE) -o /dev/null $(srcdir)/$$f || status=false; \
|
|
done; $$status
|
|
@touch $@
|
|
CLEANFILES += headers-standalone
|
|
|
|
analysis: all headers-standalone sparse splint uno
|