summary refs log tree commit diff
diff options
context:
space:
mode:
authorQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2016-03-31 17:18:33 -0400
committerQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2016-03-31 17:18:33 -0400
commit23c55ceb9180877089b28797cef8e07b81c168ae (patch)
treecf8d61f4cd78800e653c34355e279105a00568b4
parent0a81036fa2dfeb44befad86f0bf3e48b2f4ffed9 (diff)
downloadroux-23c55ceb9180877089b28797cef8e07b81c168ae.tar.gz
respect the order of the passes
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index f6497bd..a74b44b 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@ ABI = sysv
 V = @
 OBJDIR = obj
 
-SRC = main.c util.c parse.c mem.c ssa.c copy.c live.c isel.c spill.c rega.c emit.c $(ABI).c
+SRC = main.c util.c parse.c mem.c ssa.c copy.c live.c $(ABI).c isel.c spill.c rega.c emit.c
 OBJ = $(SRC:%.c=$(OBJDIR)/%.o)
 
 CFLAGS += -Wall -Wextra -std=c99 -g -pedantic