Sha256: af24fb4b6af54a33995643cf7ed5ae11ea939efc49203bccb524f25e1949cd71

Contents?: true

Size: 1.48 KB

Versions: 27

Compression:

Stored size: 1.48 KB

Contents

CXXFLAGS += -g -std=c++0x -Wall #-Wextra
CXXFLAGS += -I. -I../ -I../misc/ -I../tree/ -I../dfa/ \
	-I../../../../../antlrcpp/

#TODO LDFLAGS += ?

ALL_CXXFLAGS = $(CPPFLAGS) $(CXXFLAGS)
ALL_LDFLAGS = $(LDFLAGS)

# Escote's files
SRCS = \
    AbstractPredicateTransition.cpp \
	ActionTransition.cpp \
	ArrayPredictionContext.cpp \
	ATNDeserializationOptions.cpp \
	ATNDeserializer.cpp \
	ATNState.cpp \
	ATNType.cpp \
	AtomTransition.cpp \
	BasicBlockStartState.cpp \
	BasicState.cpp \
	BlockEndState.cpp \
	BlockStartState.cpp \
	DecisionState.cpp \
	EmptyPredictionContext.cpp \
	EpsilonTransition.cpp \
	LexerATNConfig.cpp \
	LoopEndState.cpp
# Escote's TODO: LL1Analyzer.cpp LexerATNSimulator.cpp ATNSimulator.cpp \
	ATNSerializer.cpp ATNConfigSet.cpp ATNConfig.cpp \
	ATN.cpp

# Alejandro's files
SRCS += \
	NotSetTransition.cpp \
	OrderedATNConfigSet.cpp \
	PlusBlockStartState.cpp \
	PlusLoopbackState.cpp \
	PredicateTransition.cpp \
	PredictionMode.cpp \
	RangeTransition.cpp \
	RuleStartState.cpp \
	RuleStopState.cpp \
	RuleTransition.cpp \
	SemanticContext.cpp \
	SetTransition.cpp \
	SingletonPredictionContext.cpp \
	StarBlockStartState.cpp \
	StarLoopbackState.cpp \
	StarLoopEntryState.cpp \
	TokensStartState.cpp \
	Transition.cpp \
	WildcardTransition.cpp
# Alejandro's TODO: PredictionContext.cpp PredictionContextCache.cpp \
	PrecedencePredicateTransition.cpp ParserATNSimulator.cpp

OBJS = $(SRCS:.cpp=.o)

all: $(OBJS)

%.o: %.cpp
	$(CXX) -c $(ALL_CXXFLAGS) $< -o $@ 

clean:
	$(RM) $(OBJS)

Version data entries

27 entries across 27 versions & 1 rubygems

Version Path
expressir-1.2.4 ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/Makefile
expressir-1.2.3 ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/Makefile
expressir-1.2.1 ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/Makefile
expressir-1.2.0 ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/Makefile
expressir-1.1.0 ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/Makefile
expressir-1.0.0 ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/Makefile
expressir-0.2.27 ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/Makefile
expressir-0.2.26 ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/Makefile
expressir-0.2.25 ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/Makefile
expressir-0.2.24 ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/Makefile
expressir-0.2.21 ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/Makefile
expressir-0.2.19 ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/Makefile
expressir-0.2.18 ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/Makefile
expressir-0.2.17 ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/Makefile
expressir-0.2.16 ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/Makefile
expressir-0.2.15 ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/Makefile
expressir-0.2.14 ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/Makefile
expressir-0.2.13 ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/Makefile
expressir-0.2.12 ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/Makefile
expressir-0.2.11 ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/Makefile