Makefile (79191c89a049a9c525ce22a7d1e5674699c58818) Makefile (a639a623904cc526cebd7679debf86e5c8e5590b)
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

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

70
71#
72# The clean target is not really parallel, don't print the jobs info:
73#
74clean:
75 $(make)
76
77#
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

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

70
71#
72# The clean target is not really parallel, don't print the jobs info:
73#
74clean:
75 $(make)
76
77#
78# The build-test target is not really parallel, don't print the jobs info:
78# The build-test target is not really parallel, don't print the jobs info,
79# it also uses only the tests/make targets that don't pollute the source
80# repository, i.e. that uses O= or builds the tarpkg outside the source
81# repo directories.
79#
82#
83# For a full test, use:
84#
85# make -C tools/perf -f tests/make
86#
80build-test:
87build-test:
81 @$(MAKE) SHUF=1 -f tests/make REUSE_FEATURES_DUMP=1 --no-print-directory
88 @$(MAKE) SHUF=1 -f tests/make REUSE_FEATURES_DUMP=1 MK=Makefile --no-print-directory tarpkg out
82
83#
84# All other targets get passed through:
85#
86%: FORCE
87 $(print_msg)
88 $(make)
89
90.PHONY: tags TAGS FORCE Makefile
89
90#
91# All other targets get passed through:
92#
93%: FORCE
94 $(print_msg)
95 $(make)
96
97.PHONY: tags TAGS FORCE Makefile