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 568 B

12345678910111213141516171819202122232425262728293031
  1. include ../make.inc
  2. all: cblas
  3. cblas: include/cblas_mangling.h
  4. $(MAKE) -C src
  5. include/cblas_mangling.h: include/cblas_mangling_with_flags.h.in
  6. cp $< $@
  7. cblas_testing: cblas
  8. $(MAKE) -C testing run
  9. cblas_example: cblas
  10. $(MAKE) -C examples
  11. clean:
  12. $(MAKE) -C src clean
  13. $(MAKE) -C testing clean
  14. $(MAKE) -C examples clean
  15. cleanobj:
  16. $(MAKE) -C src cleanobj
  17. $(MAKE) -C testing cleanobj
  18. $(MAKE) -C examples cleanobj
  19. cleanlib:
  20. $(MAKE) -C src cleanlib
  21. cleanexe:
  22. $(MAKE) -C testing cleanexe
  23. $(MAKE) -C examples cleanexe
  24. cleantest:
  25. $(MAKE) -C testing cleantest