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

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