You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

Makefile 424 B

123456789101112131415161718192021222324252627
  1. include ../make.inc
  2. all:
  3. cd include && cp cblas_mangling_with_flags.h.in cblas_mangling.h
  4. cd src && $(MAKE) all
  5. clean: cleanlib
  6. cleanlib:
  7. cd src && $(MAKE) clean
  8. cleanexe:
  9. cd testing && $(MAKE) cleanexe
  10. cleanall: clean cleanexe
  11. rm -f $(CBLASLIB)
  12. cd examples && rm -f *.o cblas_ex1 cblas_ex2
  13. cblas_testing:
  14. cd testing && $(MAKE) all
  15. runtst:
  16. cd testing && $(MAKE) run
  17. example: all
  18. cd examples && $(MAKE) all