1f08c3bdfSopenharmony_ciCFLAGS := -g -Wall 2f08c3bdfSopenharmony_ciLDFLAGS := -g 3f08c3bdfSopenharmony_ci 4f08c3bdfSopenharmony_ciexport CFLAGS 5f08c3bdfSopenharmony_ciexport LDFLAGS 6f08c3bdfSopenharmony_ci 7f08c3bdfSopenharmony_ciall: 8f08c3bdfSopenharmony_ci mkdir -p bin 9f08c3bdfSopenharmony_ci $(MAKE) -C tools install 10f08c3bdfSopenharmony_ci 11f08c3bdfSopenharmony_ciclean: 12f08c3bdfSopenharmony_ci $(MAKE) -C tools clean 13f08c3bdfSopenharmony_ci rm -rf bin log result runtest 14f08c3bdfSopenharmony_ci 15f08c3bdfSopenharmony_cidistclean: clean 16f08c3bdfSopenharmony_ci 17f08c3bdfSopenharmony_citest: all stress-soft stress-hard 18f08c3bdfSopenharmony_ci 19f08c3bdfSopenharmony_cistress-soft: 20f08c3bdfSopenharmony_ci @echo "run soft stress tester for 60 seconds" 21f08c3bdfSopenharmony_ci ./hwpoison.sh -T -C 1 -t 60 -S 22f08c3bdfSopenharmony_ci 23f08c3bdfSopenharmony_cistress-hard: 24f08c3bdfSopenharmony_ci @echo "run hard stress tester for 60 seconds" 25f08c3bdfSopenharmony_ci ./hwpoison.sh -T -C 20 -t 60 -M 26