mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +00:00
13 lines
106 B
Makefile
13 lines
106 B
Makefile
|
$(shell \
|
||
|
mkdir foo; \
|
||
|
touch test.in \
|
||
|
)
|
||
|
|
||
|
all: foo/test.out
|
||
|
@echo TEST-PASS
|
||
|
|
||
|
foo/%.out: %.in
|
||
|
cp $< $@
|
||
|
|
||
|
|