You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
390 B
16 lines
390 B
#
|
|
# Makefile for Fast Near-to-Far Transform
|
|
#
|
|
|
|
CXXFLAGS = -O3 -fopenmp
|
|
LDFLAGS = -static -fopenmp
|
|
LDLIBS = -L. -lfftw3f_omp -lfftw3f -lm -lquadrature -lfloat_vtr -lfloat_register
|
|
CC = g++
|
|
|
|
# source codes and object codes for the program ff
|
|
|
|
n2f_main: n2f_main.o fast_field.o transform.o integral.o \
|
|
n2f_dd.o tri3d.o edge3d.o node3d.o regcvtr.o
|
|
|
|
clean:
|
|
rm -f n2f_main *~ *.o *.u core
|
|
|