Skip to content

Commit

Permalink
fix vw makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
Soeren Sonnenburg committed Mar 19, 2012
1 parent 7329de6 commit d4bb942
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions applications/vw/Makefile
@@ -1,6 +1,7 @@
CXXFLAGS=-O9 -g $(INCLUDES)
LINKFLAGS=-lshogun
TARGETS = vw
TARGETS=vw
COMP=g++

all: $(TARGETS)

Expand All @@ -10,4 +11,4 @@ clean:
$(TARGETS): $(foreach t, $(TARGET), $t.cpp)

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

0 comments on commit d4bb942

Please sign in to comment.