Cloned library LAPACK-3.11.0 with extra build files for internal package management.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
455 B

2 years ago
TOPSRCDIR = ..
include $(TOPSRCDIR)/make.inc
.PHONY: all
all: blas
.PHONY: blas
blas:
$(MAKE) -C SRC
.PHONY: blas_testing
blas_testing: blas
$(MAKE) -C TESTING run
.PHONY: clean cleanobj cleanlib cleanexe cleantest
clean:
$(MAKE) -C SRC clean
$(MAKE) -C TESTING clean
cleanobj:
$(MAKE) -C SRC cleanobj
$(MAKE) -C TESTING cleanobj
cleanlib:
$(MAKE) -C SRC cleanlib
cleanexe:
$(MAKE) -C TESTING cleanexe
cleantest:
$(MAKE) -C TESTING cleantest