Adapt to having only a subset of variable types supported

This commit is contained in:
Martin Kroeker 2020-10-11 14:42:26 +02:00 committed by GitHub
parent e5966f8606
commit bc319cee82
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 0 deletions

View File

@ -17,6 +17,19 @@ ZBLASOBJS += zlauum_U_parallel.$(SUFFIX) zlauum_L_parallel.$(SUFFIX)
XBLASOBJS += xlauum_U_parallel.$(SUFFIX) xlauum_L_parallel.$(SUFFIX)
endif
ifneq ($(BUILD_SINGLE),1)
SBLASOBJS=
endif
ifneq ($(BUILD_DOUBLE),1)
DBLASOBJS=
endif
ifneq ($(BUILD_COMPLEX),1)
CBLASOBJS=
endif
ifneq ($(BUILD_COMPLEX16),1)
ZBLASOBJS=
endif
slauum_U_single.$(SUFFIX) : lauum_U_single.c
$(CC) -c $(CFLAGS) -UCOMPLEX -UDOUBLE $< -o $(@F)