1cabdff1aSopenharmony_ciDNNTESTPROGS += dnn-layer-pad 2cabdff1aSopenharmony_ciDNNTESTPROGS += dnn-layer-conv2d 3cabdff1aSopenharmony_ciDNNTESTPROGS += dnn-layer-depth2space 4cabdff1aSopenharmony_ciDNNTESTPROGS += dnn-layer-dense 5cabdff1aSopenharmony_ciDNNTESTPROGS += dnn-layer-mathbinary 6cabdff1aSopenharmony_ciDNNTESTPROGS += dnn-layer-maximum 7cabdff1aSopenharmony_ciDNNTESTPROGS += dnn-layer-mathunary 8cabdff1aSopenharmony_ciDNNTESTPROGS += dnn-layer-avgpool 9cabdff1aSopenharmony_ci 10cabdff1aSopenharmony_ciDNNTESTOBJS := $(DNNTESTOBJS:%=$(DNNTESTSDIR)%) $(DNNTESTPROGS:%=$(DNNTESTSDIR)/%-test.o) 11cabdff1aSopenharmony_ciDNNTESTPROGS := $(DNNTESTPROGS:%=$(DNNTESTSDIR)/%-test$(EXESUF)) 12cabdff1aSopenharmony_ci-include $(wildcard $(DNNTESTOBJS:.o=.d)) 13cabdff1aSopenharmony_ci 14cabdff1aSopenharmony_ci$(DNNTESTPROGS): %$(EXESUF): %.o $(FF_STATIC_DEP_LIBS) 15cabdff1aSopenharmony_ci $(LD) $(LDFLAGS) $(LDEXEFLAGS) $(LD_O) $(filter %.o,$^) $(FF_STATIC_DEP_LIBS) $(EXTRALIBS-avcodec) $(EXTRALIBS-avfilter) $(EXTRALIBS-avformat) $(EXTRALIBS-avutil) $(EXTRALIBS-swresample) $(EXTRALIBS) 16cabdff1aSopenharmony_ci 17cabdff1aSopenharmony_citestclean:: 18cabdff1aSopenharmony_ci $(RM) $(addprefix $(DNNTESTSDIR)/,$(CLEANSUFFIXES) *-test$(EXESUF)) 19