aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorGraydon Hoare <[email protected]>2010-10-01 14:54:40 -0700
committerGraydon Hoare <[email protected]>2010-10-01 14:54:40 -0700
commitd07f7533b0f336ff27ca4ba90aec0e0204ca7b92 (patch)
treeb306c236c22eeb47fa67849ad8a50a3f0fb66bd2 /src/Makefile
parentFix bug in bind thunks failing top drop unbound args; add test and adjust rus... (diff)
downloadrust-d07f7533b0f336ff27ca4ba90aec0e0204ca7b92.tar.xz
rust-d07f7533b0f336ff27ca4ba90aec0e0204ca7b92.zip
Sketch out #fmt syntax extension in rustboot.
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile
index 9ca5120d..a0fe6cc3 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -235,8 +235,8 @@ IL_MLS := $(addprefix boot/be/, asm.ml il.ml abi.ml)
ME_MLS := $(addprefix boot/me/, walk.ml semant.ml resolve.ml alias.ml \
simplify.ml type.ml dead.ml effect.ml typestate.ml loop.ml \
layout.ml transutil.ml trans.ml dwarf.ml)
-FE_MLS := $(addprefix boot/fe/, ast.ml token.ml lexer.ml parser.ml pexp.ml \
- item.ml cexp.ml fuzz.ml)
+FE_MLS := $(addprefix boot/fe/, ast.ml token.ml lexer.ml parser.ml \
+ extfmt.ml pexp.ml item.ml cexp.ml fuzz.ml)
DRIVER_TOP_MLS := $(addprefix boot/driver/, lib.ml $(VARIANT)/glue.ml main.ml)
BOOT_MLS := $(UTIL_BOT_MLS) $(DRIVER_BOT_MLS) $(FE_MLS) $(IL_MLS) $(ME_MLS) \
@@ -540,6 +540,7 @@ TEST_XFAILS_LLVM := $(TASK_XFAILS) \
str-concat.rs \
str-idx.rs \
structured-compare.rs \
+ syntax-extension-fmt.rs \
tag.rs \
tail-call-arg-leak.rs \
tail-cps.rs \