Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
add makefile for vw
  • Loading branch information
Soeren Sonnenburg committed Aug 30, 2011
1 parent 5a85eb5 commit faf1d9c
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions applications/vw/Makefile
@@ -0,0 +1,13 @@
CXXFLAGS=-O9 -g $(INCLUDES)
LINKFLAGS=-lshogun
TARGETS = vw

all: $(TARGETS)

clean:
rm -f $(TARGETS)

$(TARGETS): $(foreach t, $(TARGET), $t.cpp)

%: %.cpp
gcc $(CXXFLAGS) $< $(LINKFLAGS) -lshogun -o $@

0 comments on commit faf1d9c

Please sign in to comment.