mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
13 lines
249 B
Makefile
13 lines
249 B
Makefile
all: test.prog
|
|
test "$$(cat $<)" = "Program: Object: Source: test.source"
|
|
@echo TEST-PASS
|
|
|
|
%.prog: %.object
|
|
printf "Program: %s" "$$(cat $<)" > $@
|
|
|
|
%.object: %.source
|
|
printf "Object: %s" "$$(cat $<)" > $@
|
|
|
|
%.source:
|
|
printf "Source: %s" $@ > $@
|