github.com/westcoastroms/westcoastroms-build@v0.0.0-20190928114312-2350e5a73030/build/kati/testcase/makefile_list.mk (about) 1 test1: 2 echo $(MAKEFILE_LIST) 3 touch foo.mk 4 5 test2: 6 echo $(MAKEFILE_LIST) 7 touch bar.mk 8 9 test3: 10 echo $(MAKEFILE_LIST) 11 12 test4: MAKEFILE_LIST=PASS 13 test4: 14 echo $(MAKEFILE_LIST) 15 16 -include foo.mk bar.mk 17 -include bar.mk 18 -include foo.mk 19 -include ./././foo.mk