acer-wmi: Mark acer_wmi_keymap[] as __initconst
[jlayton/linux.git] / tools / perf / Makefile
index 4835618a5608892054de87d497e45e644fdeb0da..cb2e5868c8e86404729ed8595a53262cb9e88fd7 100644 (file)
@@ -60,8 +60,11 @@ endef
 
 #
 # Needed if no target specified:
+# (Except for tags and TAGS targets. The reason is that the
+# Makefile does not treat tags/TAGS as targets but as files
+# and thus won't rebuilt them once they are in place.)
 #
-all:
+all tags TAGS:
        $(print_msg)
        $(make)
 
@@ -71,9 +74,17 @@ all:
 clean:
        $(make)
 
+#
+# The build-test target is not really parallel, don't print the jobs info:
+#
+build-test:
+       @$(MAKE) -f tests/make --no-print-directory
+
 #
 # All other targets get passed through:
 #
 %:
        $(print_msg)
        $(make)
+
+.PHONY: tags TAGS