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 'vowpalwabbit/Makefile')
-rw-r--r--vowpalwabbit/Makefile44
1 files changed, 0 insertions, 44 deletions
diff --git a/vowpalwabbit/Makefile b/vowpalwabbit/Makefile
deleted file mode 100644
index 24b365dd..00000000
--- a/vowpalwabbit/Makefile
+++ /dev/null
@@ -1,44 +0,0 @@
-COMPILER = g++
-BINARIES = vw active_interactor
-MANPAGES = vw.1
-
-all: config.h depend $(BINARIES)
-
-%.1: %
- help2man --no-info --name="Vowpal Wabbit -- fast online learning tool" ./$< > $@
-
-config.h: ../configure.ac
- echo \#define PACKAGE_VERSION \"`grep AC_INIT ../configure.ac | cut -d '[' -f 3 | cut -d ']' -f 1`\" > config.h
-
-vw_SOURCES = $(shell grep libvw_la_SOURCES Makefile.am | cut -d '=' -f 2)
-
-depend: $(vw_SOURCES) config.h
- gcc -MM $(vw_SOURCES) > depend
-
--include depend
-
-%.o: %.cc %.h
- $(COMPILER) $(FLAGS) -c $< -o $@
-
-%.o: %.cc
- $(COMPILER) $(FLAGS) -c $< -o $@
-
-liballreduce.a: allreduce.o
- ar rcs $@ $<
-
-vw_OBJECTS = $(patsubst %.cc,%.o,$(vw_SOURCES))
-
-libvw.a: $(filter-out vw.o,$(vw_OBJECTS))
- ar rcs $@ $+
-
-vw: vw.o libvw.a liballreduce.a
- $(COMPILER) $(FLAGS) -L$(BOOST_LIBRARY) -L. -o $@ $< -l vw -l allreduce $(LIBS)
-
-active_interactor: active_interactor.cc
- $(COMPILER) $(FLAGS) -o $@ $+
-
-install: $(BINARIES)
- cp $(BINARIES) /usr/local/bin; cd cluster; $(MAKE) install
-
-clean:
- rm -f *.o $(BINARIES) *~ $(MANPAGES)