]> granicus.if.org Git - liblinear/blobdiff - Makefile.win
update version number of setup.py because of mistakes in testing PyPI.
[liblinear] / Makefile.win
index f5d91a64b7f19517cc39753a021c3ac0cf3e2cef..1b199701cd46a11777a0ba2b3b58ac531cd1778a 100644 (file)
@@ -4,20 +4,20 @@ TARGET = windows
 
 all: $(TARGET)\train.exe $(TARGET)\predict.exe lib
 
-$(TARGET)\train.exe: tron.obj linear.obj train.c blas\*.c
-       $(CXX) $(CFLAGS) -Fe$(TARGET)\train.exe tron.obj linear.obj train.c blas\*.c
+$(TARGET)\train.exe: newton.obj linear.obj train.c blas\*.c
+       $(CXX) $(CFLAGS) -Fe$(TARGET)\train.exe newton.obj linear.obj train.c blas\*.c
 
-$(TARGET)\predict.exe: tron.obj linear.obj predict.c blas\*.c
-       $(CXX) $(CFLAGS) -Fe$(TARGET)\predict.exe tron.obj linear.obj predict.c blas\*.c
+$(TARGET)\predict.exe: newton.obj linear.obj predict.c blas\*.c
+       $(CXX) $(CFLAGS) -Fe$(TARGET)\predict.exe newton.obj linear.obj predict.c blas\*.c
 
 linear.obj: linear.cpp linear.h
        $(CXX) $(CFLAGS) -c linear.cpp
 
-tron.obj: tron.cpp tron.h
-       $(CXX) $(CFLAGS) -c tron.cpp
+newton.obj: newton.cpp newton.h
+       $(CXX) $(CFLAGS) -c newton.cpp
 
-lib: linear.cpp linear.h linear.def tron.obj
-       $(CXX) $(CFLAGS) -LD linear.cpp tron.obj blas\*.c -Fe$(TARGET)\liblinear -link -DEF:linear.def
+lib: linear.cpp linear.h linear.def newton.obj
+       $(CXX) $(CFLAGS) -LD linear.cpp newton.obj blas\*.c -Fe$(TARGET)\liblinear -link -DEF:linear.def
 
 clean:
         -erase /Q *.obj $(TARGET)\*.exe $(TARGET)\*.dll $(TARGET)\*.exp $(TARGET)\*.lib