Skip to content

Commit 865f43a

Browse files
committed
fix makefile
1 parent d9685e0 commit 865f43a

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

make/libraries

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ CPPLINT ?= $(MATH)lib/cpplint_1.4.5
2626

2727
SUNDIALS_CVODES := $(patsubst %.c,%.o,\
2828
$(wildcard $(SUNDIALS)/src/cvodes/*.c) \
29-
$(filter-out $(SUNDIALS)/src/sundials/sundials_profiler.c $(wildcard $(SUNDIALS)/src/sundials/*.c)) \
29+
$(filter-out $(SUNDIALS)/src/sundials/sundials_profiler.c, $(wildcard $(SUNDIALS)/src/sundials/*.c)) \
3030
$(wildcard $(SUNDIALS)/src/sunmatrix/band/[^f]*.c) \
3131
$(wildcard $(SUNDIALS)/src/sunmatrix/dense/[^f]*.c) \
3232
$(wildcard $(SUNDIALS)/src/sunlinsol/band/[^f]*.c) \
@@ -36,7 +36,7 @@ SUNDIALS_CVODES := $(patsubst %.c,%.o,\
3636

3737
SUNDIALS_IDAS := $(patsubst %.c,%.o,\
3838
$(wildcard $(SUNDIALS)/src/idas/*.c) \
39-
$(filter-out $(SUNDIALS)/src/sundials/sundials_profiler.c $(wildcard $(SUNDIALS)/src/sundials/*.c)) \
39+
$(filter-out $(SUNDIALS)/src/sundials/sundials_profiler.c, $(wildcard $(SUNDIALS)/src/sundials/*.c)) \
4040
$(wildcard $(SUNDIALS)/src/sunmatrix/band/[^f]*.c) \
4141
$(wildcard $(SUNDIALS)/src/sunmatrix/dense/[^f]*.c) \
4242
$(wildcard $(SUNDIALS)/src/sunlinsol/band/[^f]*.c) \
@@ -46,7 +46,7 @@ SUNDIALS_IDAS := $(patsubst %.c,%.o,\
4646

4747
SUNDIALS_KINSOL := $(patsubst %.c,%.o, \
4848
$(wildcard $(SUNDIALS)/src/kinsol/*.c) \
49-
$(filter-out $(SUNDIALS)/src/sundials/sundials_profiler.c $(wildcard $(SUNDIALS)/src/sundials/*.c)) \
49+
$(filter-out $(SUNDIALS)/src/sundials/sundials_profiler.c, $(wildcard $(SUNDIALS)/src/sundials/*.c)) \
5050
$(wildcard $(SUNDIALS)/src/sunmatrix/band/[^f]*.c) \
5151
$(wildcard $(SUNDIALS)/src/sunmatrix/dense/[^f]*.c) \
5252
$(wildcard $(SUNDIALS)/src/sunlinsol/band/[^f]*.c) \

0 commit comments

Comments
 (0)