Page MenuHomec4science

Makefile
No OneTemporary

File Metadata

Created
Wed, May 1, 16:21

Makefile

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

Event Timeline