Renamed ann.c into mlp.c.
[mlp.git] / Makefile
index a13df7f..2fce6a7 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -27,16 +27,16 @@ else
  CXXFLAGS = -Wall -ffast-math -fcaller-saves -finline-functions -funroll-all-loops -O3
 endif
 
-all: ann
+all: mlp
 
-ann: ann.o misc.o images.o neural.o
+mlp: mlp.o misc.o images.o neural.o
        $(CXX) $(CXXFLAGS) -o $@ $^ $(LDFLAGS)
 
 Makefile.depend: *.h *.cc Makefile
        $(CC) -M *.cc > Makefile.depend
 
 clean:
-       \rm ann *.o Makefile.depend
+       \rm mlp *.o Makefile.depend
 
 archive:
        cd .. ; tar zcvf mlp-mnist.tgz mlp-mnist/{*.{cc,h,txt,sh},Makefile}