From 42a925a48a444452ce5ad6e992aab77b9ac90d5d Mon Sep 17 00:00:00 2001 From: Coke Date: Mon, 5 Apr 2010 12:59:20 -0400 Subject: [PATCH] Allow makefile to auto-gen itself. --- build/Makefile.in | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build/Makefile.in b/build/Makefile.in index 959f48b..07fd20e 100644 --- a/build/Makefile.in +++ b/build/Makefile.in @@ -3,7 +3,7 @@ # values from parrot_config PARROT_BIN_DIR = @bindir@ EXE = @exe@ -PERL = @perl@ # used implicitly by RM_F +PERL = @perl@ RM_F = @rm_f@ # locations of parrot resources @@ -13,6 +13,9 @@ PBC_TO_EXE = $(PARROT_BIN_DIR)/pbc_to_exe$(EXE) PARTCL_EXE = partcl$(EXE) +Makefile: Configure.pl build/Makefile.in + $(PERL) Configure.pl + GEN_SOURCES = \ src/ARE/Actions.pir \ src/ARE/Compiler.pir \