Page MenuHomec4science

Makefile
No OneTemporary

File Metadata

Created
Mon, May 6, 09:14

Makefile

CXX=g++
LD=${CXX}
CXXFLAGS+=-Wall -Wextra -Werror -pedantic -std=c++11 -fopenmp -O3 -march=native
LDFLAGS+=-lm -fopenmp
OBJS=poisson.o simulation.o double_buffer.o grid.o dumpers.o
all: poisson
poisson: $(OBJS)
$(LD) -o $@ $(OBJS) $(LDFLAGS)
clean:
rm -f hello poisson *.o *~

Event Timeline