Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/vowpal_wabbit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'library/Makefile')
-rw-r--r--library/Makefile30
1 files changed, 0 insertions, 30 deletions
diff --git a/library/Makefile b/library/Makefile
deleted file mode 100644
index 9a0f71ce..00000000
--- a/library/Makefile
+++ /dev/null
@@ -1,30 +0,0 @@
-BOOST_PROGRAM_OPTIONS = boost_program_options
-ifeq ($(UNAME), FreeBSD)
-BOOST_PROGRAM_OPTIONS = boost_program_options
-endif
-ifeq "CYGWIN" "$(findstring CYGWIN,$(UNAME))"
-BOOST_PROGRAM_OPTIONS = boost_program_options-mt
-endif
-ifeq ($(UNAME), Darwin)
-BOOST_PROGRAM_OPTIONS = boost_program_options-mt
-endif
-
-all: ezexample_predict ezexample_train library_example recommend
-
-ezexample_predict: ezexample_predict.cc ../vowpalwabbit/libvw.a ezexample.h
- g++ -g -o $@ $< -L ../vowpalwabbit -l vw -l allreduce -l $(BOOST_PROGRAM_OPTIONS) -l z -l pthread
-
-ezexample_predict_threaded: ezexample_predict_threaded.cc ../vowpalwabbit/libvw.a ezexample.h
- g++ -g -o $@ $< -L ../vowpalwabbit -l vw -l allreduce -l $(BOOST_PROGRAM_OPTIONS) -l z -l boost_thread
-
-ezexample_train: ezexample_train.cc ../vowpalwabbit/libvw.a ezexample.h
- g++ -g -o $@ $< -L ../vowpalwabbit -l vw -l allreduce -l $(BOOST_PROGRAM_OPTIONS) -l z -l pthread
-
-library_example: library_example.cc ../vowpalwabbit/libvw.a
- g++ -g -o $@ $< -L ../vowpalwabbit -l vw -l allreduce -l $(BOOST_PROGRAM_OPTIONS) -l z -l pthread
-
-recommend: recommend.cc ../vowpalwabbit/libvw.a ezexample.h
- g++ -g -O3 -o $@ $< -L ../vowpalwabbit -l vw -l allreduce -l $(BOOST_PROGRAM_OPTIONS) -l z -l pthread
-
-clean:
- rm -f *.o ezexample_predict ezexample_train library_example recommend ezexample_predict_threaded