X-Git-Url: https://www.fleuret.org/cgi-bin/gitweb/gitweb.cgi?p=mlp.git;a=blobdiff_plain;f=Makefile;h=2fce6a70afaf4f9ec05a6ad20d202e7e7289e2f6;hp=a13df7fa69baae8df0fe3f475cb2e445200a0b57;hb=6cf6ebfe5fef7a2f717ce353bd9a2a0c7c2e8bda;hpb=d952b7b146e7e8b7009915c367ed8e1f2435e14b diff --git a/Makefile b/Makefile index a13df7f..2fce6a7 100644 --- 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}