make (b02ac6b18cd4e2c76bf0a102c20c429b973f5f76) | make (98916392a0bdfd71668b711fd93915791f45df02) |
---|---|
1ifndef MK 2ifeq ($(MAKECMDGOALS),) 3# no target specified, trigger the whole suite 4all: 5 @echo "Testing Makefile"; $(MAKE) -sf tests/make MK=Makefile 6 @echo "Testing Makefile.perf"; $(MAKE) -sf tests/make MK=Makefile.perf 7else 8# run only specific test over 'Makefile' --- 207 unchanged lines hidden (view full) --- 216test_default = test -x $(PERF)/perf 217test = $(if $(test_$1),$(test_$1),$(test_default)) 218 219test_default_O = test -x $$TMP_O/perf 220test_O = $(if $(test_$1),$(test_$1),$(test_default_O)) 221 222all: 223 | 1ifndef MK 2ifeq ($(MAKECMDGOALS),) 3# no target specified, trigger the whole suite 4all: 5 @echo "Testing Makefile"; $(MAKE) -sf tests/make MK=Makefile 6 @echo "Testing Makefile.perf"; $(MAKE) -sf tests/make MK=Makefile.perf 7else 8# run only specific test over 'Makefile' --- 207 unchanged lines hidden (view full) --- 216test_default = test -x $(PERF)/perf 217test = $(if $(test_$1),$(test_$1),$(test_default)) 218 219test_default_O = test -x $$TMP_O/perf 220test_O = $(if $(test_$1),$(test_$1),$(test_default_O)) 221 222all: 223 |
224ifdef SHUF 225run := $(shell shuf -e $(run)) 226run_O := $(shell shuf -e $(run_O)) 227endif 228 |
|
224ifdef DEBUG 225d := $(info run $(run)) 226d := $(info run_O $(run_O)) 227endif 228 229MAKEFLAGS := --no-print-directory 230 231clean := @(cd $(PERF); make -s -f $(MK) clean >/dev/null) --- 47 unchanged lines hidden --- | 229ifdef DEBUG 230d := $(info run $(run)) 231d := $(info run_O $(run_O)) 232endif 233 234MAKEFLAGS := --no-print-directory 235 236clean := @(cd $(PERF); make -s -f $(MK) clean >/dev/null) --- 47 unchanged lines hidden --- |