CXXFLAGS=-std=c++17 -ggdb
INCLUDES=-I../../src/
SOURCES=main.cpp block.cpp bytebuf.cpp compiler.cpp error.cpp lvlgen.cpp parser.cpp structs.cpp tokens.cpp
TARGET=../../bin/rovc

$(TARGET): $(SOURCES)
	$(CXX) -o $(TARGET) $(CXXFLAGS) $(INCLUDES) $(SOURCES)
