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.
18 lines
401 B
18 lines
401 B
#
|
|
# Makefile for Fast Near-to-Far Transform
|
|
#
|
|
CXXFLAGS = -O3 -fopenmp -I. -std=c++17 -DDGTD_USE_DOUBLE -DDGTD_USE_DOUBLE_TS
|
|
LDFLAGS = -static -fopenmp
|
|
LDLIBS = -L. -lfftw3f_omp -lfftw3f -lm
|
|
CC = g++
|
|
|
|
# object files
|
|
OBJS = main.o OutputSurfMesh.o vtr.o cvtr.o
|
|
|
|
# executable
|
|
ScatteringRCS: $(OBJS)
|
|
$(CC) $(CXXFLAGS) -o $@ $(OBJS) $(LDFLAGS) $(LDLIBS)
|
|
|
|
# clean
|
|
clean:
|
|
rm -f FastFF *~ *.o *.u core
|
|
|