1*16467b97STreehugger RobotAUTOMAKE_OPTIONS = gnu 2*16467b97STreehugger RobotAM_LIBTOOLFLAGS = 3*16467b97STreehugger Robot## --silent 4*16467b97STreehugger RobotACLOCAL_AMFLAGS = -I m4 5*16467b97STreehugger Robotlib_LTLIBRARIES = libantlr3c.la 6*16467b97STreehugger Robot 7*16467b97STreehugger RobotLIBSOURCES = src/antlr3baserecognizer.c \ 8*16467b97STreehugger Robot src/antlr3basetree.c \ 9*16467b97STreehugger Robot src/antlr3basetreeadaptor.c \ 10*16467b97STreehugger Robot src/antlr3bitset.c \ 11*16467b97STreehugger Robot src/antlr3collections.c \ 12*16467b97STreehugger Robot src/antlr3commontoken.c \ 13*16467b97STreehugger Robot src/antlr3commontree.c \ 14*16467b97STreehugger Robot src/antlr3commontreeadaptor.c \ 15*16467b97STreehugger Robot src/antlr3commontreenodestream.c \ 16*16467b97STreehugger Robot src/antlr3convertutf.c \ 17*16467b97STreehugger Robot src/antlr3cyclicdfa.c \ 18*16467b97STreehugger Robot src/antlr3debughandlers.c \ 19*16467b97STreehugger Robot src/antlr3encodings.c \ 20*16467b97STreehugger Robot src/antlr3exception.c \ 21*16467b97STreehugger Robot src/antlr3filestream.c \ 22*16467b97STreehugger Robot src/antlr3inputstream.c \ 23*16467b97STreehugger Robot src/antlr3intstream.c \ 24*16467b97STreehugger Robot src/antlr3lexer.c \ 25*16467b97STreehugger Robot src/antlr3parser.c \ 26*16467b97STreehugger Robot src/antlr3rewritestreams.c \ 27*16467b97STreehugger Robot src/antlr3string.c \ 28*16467b97STreehugger Robot src/antlr3tokenstream.c \ 29*16467b97STreehugger Robot src/antlr3treeparser.c 30*16467b97STreehugger Robot 31*16467b97STreehugger Robotlibantlr3c_la_SOURCES = $(LIBSOURCES) 32*16467b97STreehugger Robot 33*16467b97STreehugger Robotinclude_HEADERS = include/antlr3.h \ 34*16467b97STreehugger Robot include/antlr3baserecognizer.h \ 35*16467b97STreehugger Robot include/antlr3basetree.h \ 36*16467b97STreehugger Robot include/antlr3basetreeadaptor.h \ 37*16467b97STreehugger Robot include/antlr3bitset.h \ 38*16467b97STreehugger Robot include/antlr3collections.h \ 39*16467b97STreehugger Robot include/antlr3commontoken.h \ 40*16467b97STreehugger Robot include/antlr3commontree.h \ 41*16467b97STreehugger Robot include/antlr3commontreeadaptor.h \ 42*16467b97STreehugger Robot include/antlr3commontreenodestream.h \ 43*16467b97STreehugger Robot include/antlr3convertutf.h \ 44*16467b97STreehugger Robot include/antlr3cyclicdfa.h \ 45*16467b97STreehugger Robot include/antlr3debugeventlistener.h \ 46*16467b97STreehugger Robot include/antlr3defs.h \ 47*16467b97STreehugger Robot include/antlr3encodings.h \ 48*16467b97STreehugger Robot include/antlr3errors.h \ 49*16467b97STreehugger Robot include/antlr3exception.h \ 50*16467b97STreehugger Robot include/antlr3filestream.h \ 51*16467b97STreehugger Robot include/antlr3input.h \ 52*16467b97STreehugger Robot include/antlr3interfaces.h \ 53*16467b97STreehugger Robot include/antlr3intstream.h \ 54*16467b97STreehugger Robot include/antlr3lexer.h \ 55*16467b97STreehugger Robot include/antlr3memory.h \ 56*16467b97STreehugger Robot include/antlr3parser.h \ 57*16467b97STreehugger Robot include/antlr3parsetree.h \ 58*16467b97STreehugger Robot include/antlr3recognizersharedstate.h \ 59*16467b97STreehugger Robot include/antlr3rewritestreams.h \ 60*16467b97STreehugger Robot include/antlr3string.h \ 61*16467b97STreehugger Robot include/antlr3tokenstream.h \ 62*16467b97STreehugger Robot include/antlr3treeparser.h \ 63*16467b97STreehugger Robot antlr3config.h 64*16467b97STreehugger Robot 65*16467b97STreehugger Robotlibantlr3c_la_LDFLAGS = -avoid-version 66*16467b97STreehugger Robot 67*16467b97STreehugger RobotINCLUDES = -Iinclude 68*16467b97STreehugger Robot 69*16467b97STreehugger RobotEXTRA_DIST = \ 70*16467b97STreehugger Robot vsrulefiles/antlr3lexerandparser.rules \ 71*16467b97STreehugger Robot vsrulefiles/antlr3lexer.rules \ 72*16467b97STreehugger Robot vsrulefiles/antlr3parser.rules \ 73*16467b97STreehugger Robot vsrulefiles/antlr3treeparser.rules \ 74*16467b97STreehugger Robot C.sln C.vcproj C.vcproj.vspscc \ 75*16467b97STreehugger Robot C.vssscc doxyfile doxygen 76*16467b97STreehugger Robot 77*16467b97STreehugger Robotexport OBJECT_MODE 78*16467b97STreehugger Robot 79