mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
11 lines
120 B
Makefile
11 lines
120 B
Makefile
$(shell \
|
|
echo "target" > target.in; \
|
|
)
|
|
|
|
all: target
|
|
test "$$(cat $^)" = "target"
|
|
@echo TEST-PASS
|
|
|
|
%: %.in
|
|
cp $< $@
|