mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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 $< $@
|
|
|
|
|