mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-07 00:48:56 +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
|