Blame telepathy-account-widgets/tools/check-coding-style.mk

Packit 79f644
check-coding-style:
Packit 79f644
	@fail=0; \
Packit 79f644
	if test -n "$(check_misc_sources)"; then \
Packit 79f644
		tools_dir=$(top_srcdir)/tools \
Packit 79f644
		sh $(top_srcdir)/tools/check-misc.sh \
Packit 79f644
			$(addprefix $(srcdir)/,$(check_misc_sources)) || fail=1; \
Packit 79f644
	fi; \
Packit 79f644
	if test -n "$(check_c_sources)"; then \
Packit 79f644
		tools_dir=$(top_srcdir)/tools \
Packit 79f644
		sh $(top_srcdir)/tools/check-c-style.sh \
Packit 79f644
			$(addprefix $(srcdir)/,$(check_c_sources)) || fail=1; \
Packit 79f644
	fi;\
Packit 79f644
	if test yes = "$(enable_fatal_warnings)"; then \
Packit 79f644
		exit "$$fail";\
Packit 79f644
	else \
Packit 79f644
		exit 0;\
Packit 79f644
	fi