Skip to content
Snippets Groups Projects

[WIP] Fortran bindings

Open Aidan Chalk requested to merge fortran_bindings into master
+ 652
10
Compare changes
  • Side-by-side
  • Inline
Files
+ 11
3
@@ -19,12 +19,12 @@
# Add the source directory and debug to CFLAGS
AM_CFLAGS = -I../src -DCPU_TPS=2.67e9 -DTIMERS
AM_LDFLAGS = -lcblas
# Set-up the library
bin_PROGRAMS = test test_bh test_bh_sorted test_fmm_sorted
bin_PROGRAMS = test test_bh test_bh_sorted test_fmm_sorted thread_test pthread_test
if HAVECBLAS
bin_PROGRAMS += test_qr
AM_LDFLAGS = -lcblas
endif
# Sources for test
@@ -32,6 +32,14 @@ test_SOURCES = test.c
test_CFLAGS = $(AM_CFLAGS)
test_LDADD = ../src/.libs/libquicksched.a
thread_test_SOURCES = thread_test.c
thread_test_CFLAGS = $(AM_CFLAGS)
thread_test_LDADD = ../src/.libs/libquicksched.a
pthread_test_SOURCES = thread_test.c
pthread_test_CFLAGS = $(AM_CFLAGS) -DFLAGS=qsched_flag_pthread
pthread_test_LDADD = ../src/.libs/libquicksched.a
# Sources for test_qr
test_qr_SOURCES = test_qr.c
test_qr_CFLAGS = $(AM_CFLAGS)
Loading