Browse Source

Adapt to having only a subset of variable types supported

tags/v0.3.11^2
Martin Kroeker GitHub 5 years ago
parent
commit
e5966f8606
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 0 deletions
  1. +13
    -0
      lapack/potf2/Makefile

+ 13
- 0
lapack/potf2/Makefile View File

@@ -8,6 +8,19 @@ CBLASOBJS = cpotf2_U.$(SUFFIX) cpotf2_L.$(SUFFIX)
ZBLASOBJS = zpotf2_U.$(SUFFIX) zpotf2_L.$(SUFFIX) ZBLASOBJS = zpotf2_U.$(SUFFIX) zpotf2_L.$(SUFFIX)
XBLASOBJS = xpotf2_U.$(SUFFIX) xpotf2_L.$(SUFFIX) XBLASOBJS = xpotf2_U.$(SUFFIX) xpotf2_L.$(SUFFIX)


ifeq "$(or $(BUILD_SINGLE),$(BUILD_DOUBLE))" ""
SBLASOBJS=
endif
ifneq ($(BUILD_DOUBLE),1)
DBLASOBJS=
endif
ifeq "$(or $(BUILD_COMPLEX),$(BUILD_COMPLEX16))" ""
CBLASOBJS=
endif
ifneq ($(BUILD_COMPLEX16),1)
ZBLASOBJS=
endif

spotf2_U.$(SUFFIX) : potf2_U.c spotf2_U.$(SUFFIX) : potf2_U.c
$(CC) -c $(CFLAGS) -UCOMPLEX -UDOUBLE $< -o $(@F) $(CC) -c $(CFLAGS) -UCOMPLEX -UDOUBLE $< -o $(@F)




Loading…
Cancel
Save