bl-compiler

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

configure.ac (189B)


      1 AC_INIT([blc], [0.1.0])
      2 AM_INIT_AUTOMAKE([foreign subdir-objects -Wall])
      3 AC_PROG_CXX
      4 AC_PROG_INSTALL
      5 
      6 AC_CONFIG_HEADERS([config.h])
      7 
      8 AC_CONFIG_FILES([
      9  Makefile
     10  src/Makefile
     11 ])
     12 
     13 AC_OUTPUT