X-Git-Url: https://fleuret.org/cgi-bin/gitweb/gitweb.cgi?p=mtp.git;a=blobdiff_plain;f=Makefile;fp=Makefile;h=bb334d1d94e3abae26ed8198429f56a88a1b2944;hp=c50277146636d904fde683c3f6ac76a69767ff03;hb=283fb863279172a0240cdae69eff023e149e997a;hpb=115051461c429783c8c0a38ade99538b7891a7c4 diff --git a/Makefile b/Makefile index c502771..bb334d1 100644 --- a/Makefile +++ b/Makefile @@ -41,7 +41,7 @@ endif CXXFLAGS = -Wconversion -Wall $(OPTIMIZE_FLAG) $(PROFILE_FLAG) $(VERBOSE_FLAG) -all: mtp mtp_example mtp_stress_test +all: mtp mtp_example mtp: \ path.o \ @@ -57,17 +57,10 @@ mtp_example: \ mtp_example.o $(CXX) $(CXXFLAGS) -o $@ $^ $(LDFLAGS) -mtp_stress_test: \ - path.o \ - mtp_graph.o \ - mtp_tracker.o \ - mtp_stress_test.o - $(CXX) $(CXXFLAGS) -o $@ $^ $(LDFLAGS) - Makefile.depend: *.h *.cc Makefile $(CC) $(CXXFLAGS) -M *.cc > Makefile.depend clean: - \rm -f mtp mtp_example mtp_stress_test *.o Makefile.depend + \rm -f mtp mtp_example *.o Makefile.depend -include Makefile.depend