Makefile (01b944fe1cd4e21a2a9ed51adbdbafe2d5e905ba) Makefile (98916392a0bdfd71668b711fd93915791f45df02)
1#
2# This is a simple wrapper Makefile that calls the main Makefile.perf
3# with a -j option to do parallel builds
4#
5# If you want to invoke the perf build in some non-standard way then
6# you can use the 'make -f Makefile.perf' method to invoke it.
7#
8

--- 64 unchanged lines hidden (view full) ---

73#
74clean:
75 $(make)
76
77#
78# The build-test target is not really parallel, don't print the jobs info:
79#
80build-test:
1#
2# This is a simple wrapper Makefile that calls the main Makefile.perf
3# with a -j option to do parallel builds
4#
5# If you want to invoke the perf build in some non-standard way then
6# you can use the 'make -f Makefile.perf' method to invoke it.
7#
8

--- 64 unchanged lines hidden (view full) ---

73#
74clean:
75 $(make)
76
77#
78# The build-test target is not really parallel, don't print the jobs info:
79#
80build-test:
81 @$(MAKE) -f tests/make --no-print-directory
81 @$(MAKE) SHUF=1 -f tests/make --no-print-directory
82
83#
84# All other targets get passed through:
85#
86%: FORCE
87 $(print_msg)
88 $(make)
89
90.PHONY: tags TAGS FORCE Makefile
82
83#
84# All other targets get passed through:
85#
86%: FORCE
87 $(print_msg)
88 $(make)
89
90.PHONY: tags TAGS FORCE Makefile