aboutsummaryrefslogtreecommitdiffstats
path: root/makefile
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-03-07 16:15:51 +0000
committerYann Herklotz <ymherklotz@gmail.com>2017-03-07 16:15:51 +0000
commitfed691abddc2b242a6bcb81d87e18797b95bbe80 (patch)
tree28cb4c0ea9facfa7cc8642c778708f4e038c2aef /makefile
parent15789d04e85806745c4c2e1cb3fdc891c34ab21f (diff)
downloadCompiler-fed691abddc2b242a6bcb81d87e18797b95bbe80.tar.gz
Compiler-fed691abddc2b242a6bcb81d87e18797b95bbe80.zip
Can compile simplest program
Diffstat (limited to 'makefile')
-rw-r--r--makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/makefile b/makefile
index 760d388..20b02d4 100644
--- a/makefile
+++ b/makefile
@@ -69,7 +69,7 @@ $(PARSRCDIR)/c_parser.tab.cpp $(PARSRCDIR)/c_parser.tab.hpp : $(PARSRCDIR)/c_par
# Make the c_parser
bin/c_compiler: $(COMPBUILDDIR)/compiler_main.o $(COMPBUILDDIR)/statement.o \
$(COMPBUILDDIR)/function.o $(COMPBUILDDIR)/expression.o \
- $(COMPBUILDDIR)/initializer.o $(COMPBUILDDIR)/translation_unit.o \
+ $(COMPBUILDDIR)/translation_unit.o \
$(COMPBUILDDIR)/declaration.o $(COMPBUILDDIR)/type.o \
$(COMPBUILDDIR)/c_parser.tab.o $(COMPBUILDDIR)/c_lexer.yy.o
@echo "Linking..."