Files
lapack/CBLAS/Makefile
T
Julie 3f23bd5d53 merging: Various cleanups to makefiles #84
Contribution by @turboencabulator
Closing #84
2016-11-25 17:03:13 -08:00

28 lines
424 B
Makefile

include ../make.inc
all:
cd include && cp cblas_mangling_with_flags.h.in cblas_mangling.h
cd src && $(MAKE) all
clean: cleanlib
cleanlib:
cd src && $(MAKE) clean
cleanexe:
cd testing && $(MAKE) cleanexe
cleanall: clean cleanexe
rm -f $(CBLASLIB)
cd examples && rm -f *.o cblas_ex1 cblas_ex2
cblas_testing:
cd testing && $(MAKE) all
runtst:
cd testing && $(MAKE) run
example: all
cd examples && $(MAKE) all