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@jl-desktop.(none)>2010-12-03 19:19:09 +0300
committerJohn Langford <jl@jl-desktop.(none)>2010-12-03 19:19:09 +0300
commitc13ae76b0e85fa4987b31862ba47a1f17f17ae03 (patch)
tree9941fb3af44da8f4c99fe4667a675014cd23688a /Makefile
parent5d424bddd267c28e5bb15ece8781214080d0d182 (diff)
synced lda
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 96de4739..ea66eacb 100644
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,8 @@
COMPILER = g++
LIBS = -l boost_program_options -l pthread -l z
#LIBS = -l boost_program_options-gcc34 -l pthread -l z
-BOOST_INCLUDE = /usr/local/boost/include/boost-1_34_1
-BOOST_LIBRARY = /usr/local/boost/lib
+BOOST_INCLUDE = /usr/local/include
+BOOST_LIBRARY = /usr/local/lib
ARCH = -march=native
OPTIM_FLAGS = -O3 -fomit-frame-pointer -ffast-math -fno-strict-aliasing
@@ -22,8 +22,8 @@ FLAGS = -Wall $(ARCH) $(OPTIM_FLAGS) -D_FILE_OFFSET_BITS=64 -I $(BOOST_INCLUDE)
BINARIES = vw
MANPAGES = vw.1
-all: $(BINARIES) $(MANPAGES)
-#all: $(BINARIES)
+#all: $(BINARIES) $(MANPAGES)
+all: $(BINARIES)
%.1: %
help2man --no-info --name="Vowpal Wabbit -- fast online learning tool" ./$< > $@
@@ -50,7 +50,7 @@ gd.o: parse_example.h
%.o: %.cc
$(COMPILER) $(FLAGS) -c $< -o $@
-vw: hash.o global_data.o delay_ring.o message_relay.o io.o parse_regressor.o parse_primitives.o unique_sort.o cache.o simple_label.o parse_example.o multisource.o sparse_dense.o network.o parse_args.o gd.o cg.o noop.o parser.o vw.o loss_functions.o sender.o main.o
+vw: hash.o global_data.o delay_ring.o message_relay.o io.o parse_regressor.o parse_primitives.o unique_sort.o cache.o simple_label.o parse_example.o multisource.o sparse_dense.o network.o parse_args.o gd.o lda.o cg.o noop.o parser.o vw.o loss_functions.o sender.o main.o
$(COMPILER) $(FLAGS) -L$(BOOST_LIBRARY) -o $@ $+ $(LIBS)
active_interactor: active_interactor.cc