aboutsummaryrefslogtreecommitdiff
path: root/flymake.mk
diff options
context:
space:
mode:
Diffstat (limited to 'flymake.mk')
-rw-r--r--flymake.mk12
1 files changed, 12 insertions, 0 deletions
diff --git a/flymake.mk b/flymake.mk
new file mode 100644
index 0000000..8228150
--- /dev/null
+++ b/flymake.mk
@@ -0,0 +1,12 @@
+get_cs_flags = $(foreach target,$(subst .,_,$(subst -,_,$($(2)))),$($(target)_$(1)FLAGS))
+get_cs_all_flags = $(foreach type,$(2),$(call get_cs_flags,$(1),$(type)))
+get_cs_compile = $(if $(subst C,,$(1)),$($(1)COMPILE),$(COMPILE))
+get_cs_cmdline = $(call get_cs_compile,$(1)) $(call get_cs_all_flags,$(1),check_PROGRAMS bin_PROGRAMS lib_LTLIBRARIES) -fsyntax-only
+
+check-syntax:
+ s=$(suffix $(CHK_SOURCES));\
+ if [ "$$s" = ".c" ]; then $(call get_cs_cmdline,C) $(CHK_SOURCES);\
+ elif [ "$$s" = ".cpp" ]; then $(call get_cs_cmdline,CXX) $(CHK_SOURCES);\
+ else exit 1; fi
+
+PHONY: check-syntax