diff --git a/Makefile b/Makefile index ac5288e..cc81cef 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ HEADERS = $(wildcard *.h) all: compile_flags.txt wacc -wacc: main.o lexer.o +wacc: main.o lexer.o parser.o gcc $^ -o $@ %.o: %.c $(HEADERS) diff --git a/compile_flags.txt b/compile_flags.txt deleted file mode 100644 index 083ed44..0000000 --- a/compile_flags.txt +++ /dev/null @@ -1,6 +0,0 @@ --xc --std=c17 --Wall --Wextra --Wpedantic --Wconversion diff --git a/lexer.o b/lexer.o deleted file mode 100644 index e794c73..0000000 Binary files a/lexer.o and /dev/null differ diff --git a/main.o b/main.o deleted file mode 100644 index 09c8eea..0000000 Binary files a/main.o and /dev/null differ diff --git a/parser.c b/parser.c new file mode 100644 index 0000000..c1dfa96 --- /dev/null +++ b/parser.c @@ -0,0 +1 @@ +#include "parser.h" diff --git a/parser.h b/parser.h new file mode 100644 index 0000000..bee509b --- /dev/null +++ b/parser.h @@ -0,0 +1,4 @@ +#ifndef PARSER_H +#define PARSER_H + +#endif diff --git a/wacc b/wacc deleted file mode 100755 index 8ad967f..0000000 Binary files a/wacc and /dev/null differ