mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 17:16:12 +00: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 $< $@
|