summaryrefslogtreecommitdiffstats
path: root/build/pymake/tests/include-test.mk
blob: 3608fc2690ba13ece07980cd4486a5f3e50442ee (plain)
1
2
3
4
5
6
7
8
$(shell echo "INCLUDED2 = yes" >local-include.inc)

include $(TESTPATH)/include-file.inc local-include.inc

all:
	test "$(INCLUDED)" = "yes"
	test "$(INCLUDED2)" = "yes"
	@echo TEST-PASS