add parser

This commit is contained in:
Simon 2023-02-11 20:02:49 +01:00
parent 0fc7993eb1
commit 1f88f35647
7 changed files with 6 additions and 7 deletions

View File

@ -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)

View File

@ -1,6 +0,0 @@
-xc
-std=c17
-Wall
-Wextra
-Wpedantic
-Wconversion

BIN
lexer.o

Binary file not shown.

BIN
main.o

Binary file not shown.

1
parser.c Normal file
View File

@ -0,0 +1 @@
#include "parser.h"

4
parser.h Normal file
View File

@ -0,0 +1,4 @@
#ifndef PARSER_H
#define PARSER_H
#endif

BIN
wacc

Binary file not shown.