mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00: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
|