diff options
author | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-03-31 17:18:33 -0400 |
---|---|---|
committer | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-03-31 17:18:33 -0400 |
commit | 23c55ceb9180877089b28797cef8e07b81c168ae (patch) | |
tree | cf8d61f4cd78800e653c34355e279105a00568b4 /Makefile | |
parent | 0a81036fa2dfeb44befad86f0bf3e48b2f4ffed9 (diff) | |
download | roux-23c55ceb9180877089b28797cef8e07b81c168ae.tar.gz |
respect the order of the passes
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
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 |