summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2016-12-05 02:09:48 -0500
committerQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2016-12-12 22:16:57 -0500
commit12f9d16c7b000030ce332778fa4d51d455ae819f (patch)
tree6adbe9f3cc7e79e5d1616d9faf4650f5a2e3ba58 /Makefile
parent2380b5786a515af7149f7648d9e9c22a663e3a9c (diff)
downloadroux-12f9d16c7b000030ce332778fa4d51d455ae819f.tar.gz
create cfg.c for cfg-related functions
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 9528f45..64531ea 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 fold.c live.c $(ABI).c isel.c spill.c rega.c emit.c
+SRC = main.c util.c parse.c cfg.c mem.c ssa.c copy.c fold.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