bl-compiler

compiler for the bl programming language.
Log | Files | Refs | README

Makefile.am (158B)


      1 bin_PROGRAMS = blc
      2 
      3 blc_SOURCES = \
      4     main.cpp \
      5     lexer/lexer.cpp \
      6     parser/parser.cpp 
      7 
      8 AM_CXXFLAGS = \
      9     -std=c++17 \
     10     -I$(top_srcdir)/include