Skip to content

Commit

Permalink
Use OBJEXT rather than hardcoded static lib
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikko Koppanen committed Aug 6, 2010
1 parent 579aeb7 commit dbde69b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile.am
Expand Up @@ -7,9 +7,9 @@ svm_predict_SOURCES = svm-predict.c
svm_train_SOURCES = svm-train.c
svm_scale_SOURCES = svm-scale.c

svm_predict_LDADD = svm.a -lstdc++
svm_train_LDADD = svm.a -lstdc++
svm_scale_LDADD = svm.a -lstdc++
svm_predict_LDADD = svm.$(OBJEXT) -lstdc++
svm_train_LDADD = svm.$(OBJEXT) -lstdc++
svm_scale_LDADD = svm.$(OBJEXT) -lstdc++

lib_LTLIBRARIES = libsvm.la
libsvm_la_SOURCES = svm.cpp
Expand Down

0 comments on commit dbde69b

Please sign in to comment.