mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
13 lines
230 B
Makefile
13 lines
230 B
Makefile
#T returncode: 2
|
|
|
|
# Once parsing is finished, recursive expansion in commands are not allowed to create any new rules (it may only set variables)
|
|
|
|
define MORERULE
|
|
all:
|
|
@echo TEST-FAIL
|
|
endef
|
|
|
|
all:
|
|
$(eval $(MORERULE))
|
|
@echo done
|