Mypal/build/pymake/tests/file-functions.mk
2019-03-11 13:26:37 +03:00

20 lines
620 B
Makefile

$(shell \
touch test.file; \
touch .testhidden; \
mkdir foo; \
touch foo/testfile; \
)
all:
test "$(abspath test.file)" = "$(CURDIR)/test.file"
test "$(realpath test.file)" = "$(CURDIR)/test.file"
test "$(sort $(wildcard *))" = "foo test.file"
# commented out because GNU make matches . and .. while python doesn't, and I don't
# care enough
# test "$(sort $(wildcard .*))" = ". .. .testhidden"
test "$(sort $(wildcard test*))" = "test.file"
test "$(sort $(wildcard foo/*))" = "foo/testfile"
test "$(sort $(wildcard ./*))" = "./foo ./test.file"
test "$(sort $(wildcard f?o/*))" = "foo/testfile"
@echo TEST-PASS