Sha256: 34ad90c050d3066c56582b344b7a0c8eeed10903b65ec2373f1ae9cfe46d547b

Contents?: true

Size: 963 Bytes

Versions: 8

Compression:

Stored size: 963 Bytes

Contents

SRCS = src/quarry.cpp src/data_set/data_set.cpp src/data_set/example.cpp src/data_set/sparse/sparse_example.cpp src/data_set/features/nominal_feature.cpp src/data_set/features/numeric_feature.cpp src/classifier/classifier.cpp src/classifier/naive_bayes/naive_bayes_classifier.cpp src/metrics/confusion_matrix.cpp src/storage/arff.cpp src/storage/folders.cpp src/storage/binary.cpp src/preprocessing/text/text_pipeline.cpp src/preprocessing/text/inplace_processor/porter_stemmer_original.cpp src/preprocessing/text/token_selector/stop_words.cpp src/preprocessing/text/tokeniser/simple_tokeniser.cpp src/model/model.cpp
OBJS = ${SRCS:.cpp=.o}
INCFLAGS = -Isrc
CPPFLAGS += -O3
LIB = libquarry.a

.SUFFIXES:
.SUFFIXES: .cpp .o

.cpp.o :
	$(CXX) $(INCFLAGS) $(CPPFLAGS) -o $@ -c $<

all : $(LIB)

$(LIB) : $(OBJS)
	$(STATIC_LIB) obj/$(LIB) $(OBJS)

test : $(LIB)
	$(CXX) $(INCFLAGS) $(CPPFLAGS) -o obj/test obj/$(LIB) src/test.cpp

clean :
	rm -f $(OBJS)
	rm -f obj/*

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
thera-0.0.8 lib/quarry/Makefile.targets
thera-0.0.7 lib/quarry/Makefile.targets
thera-0.0.6 lib/quarry/Makefile.targets
thera-0.0.5 lib/quarry/Makefile.targets
thera-0.0.4 lib/quarry/Makefile.targets
thera-0.0.3 lib/quarry/Makefile.targets
thera-0.0.2 lib/quarry/Makefile.targets
thera-0.0.1 lib/quarry/Makefile.targets