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:
authorJohn Langford <jl@hunch.net>2014-01-18 23:16:05 +0400
committerJohn Langford <jl@hunch.net>2014-01-18 23:16:05 +0400
commit779b9ef8eb27593493ae9306dc75760bd41f37e1 (patch)
tree7d611194a876c24ecf97e6b8262debb8411f466b /library/Makefile
parent8b6fe928a1c8595e158a69bcd52490d874b38297 (diff)
added autogen extra files7.5
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