mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
14 lines
216 B
Makefile
14 lines
216 B
Makefile
|
all:
|
||
|
# $(RM) defaults to -f
|
||
|
$(RM) nosuchfile
|
||
|
touch newfile
|
||
|
test -f newfile
|
||
|
$(RM) newfile
|
||
|
test ! -f newfile
|
||
|
mkdir newdir
|
||
|
test -d newdir
|
||
|
touch newdir/newfile
|
||
|
$(RM) -r newdir
|
||
|
test ! -d newdir
|
||
|
@echo TEST-PASS
|