mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 17:16:12 +00:00
8 lines
105 B
Makefile
8 lines
105 B
Makefile
#T returncode: 2
|
|
all:
|
|
mkdir newdir
|
|
test -d newdir
|
|
touch newdir/newfile
|
|
$(RM) newdir
|
|
@echo TEST-PASS
|