Browse Source

Change ifndefs to ifneq

tags/v0.3.13^2
Martin Kroeker GitHub 4 years ago
parent
commit
8a6b17f97d
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      ctest/Makefile

+ 3
- 3
ctest/Makefile View File

@@ -61,7 +61,7 @@ endif


all1: $(all1targets) all1: $(all1targets)


ifndef CROSS
ifneq ($(CROSS), 1)
ifeq ($(USE_OPENMP), 1) ifeq ($(USE_OPENMP), 1)
ifeq ($(BUILD_SINGLE),1) ifeq ($(BUILD_SINGLE),1)
OMP_NUM_THREADS=2 ./xscblat1 OMP_NUM_THREADS=2 ./xscblat1
@@ -106,7 +106,7 @@ endif


all2: $(all2targets) all2: $(all2targets)


ifndef CROSS
ifneq ($(CROSS), 1)
ifeq ($(USE_OPENMP), 1) ifeq ($(USE_OPENMP), 1)
ifeq ($(BUILD_SINGLE),1) ifeq ($(BUILD_SINGLE),1)
OMP_NUM_THREADS=2 ./xscblat2 < sin2 OMP_NUM_THREADS=2 ./xscblat2 < sin2
@@ -152,7 +152,7 @@ endif


all3: $(all3targets) all3: $(all3targets)


ifndef CROSS
ifneq ($(CROSS), 1)
ifeq ($(USE_OPENMP), 1) ifeq ($(USE_OPENMP), 1)
ifeq ($(BUILD_SINGLE),1) ifeq ($(BUILD_SINGLE),1)
OMP_NUM_THREADS=2 ./xscblat3 < sin3 OMP_NUM_THREADS=2 ./xscblat3 < sin3


Loading…
Cancel
Save