mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
12 lines
260 B
Makefile
12 lines
260 B
Makefile
#T gmake skip
|
|
all:
|
|
mkdir shell-glob-test
|
|
touch shell-glob-test/foo.txt
|
|
touch shell-glob-test/bar.txt
|
|
touch shell-glob-test/a.foo
|
|
touch shell-glob-test/b.foo
|
|
$(RM) shell-glob-test/*.txt
|
|
$(RM) shell-glob-test/?.foo
|
|
rmdir shell-glob-test
|
|
@echo TEST-PASS
|