Skip to content
Snippets Groups Projects
Commit 2342453f authored by jstark's avatar jstark
Browse files

Renamed circle -> disk.

parent afc1a99f
No related branches found
No related tags found
No related merge requests found
Pipeline #3442 canceled
include ../../../example.mk
CC=mpic++
LDIR =
OBJ = main.o
%.o: %.cpp
$(CC) -O3 -c --std=c++14 -o $@ $< $(INCLUDE_PATH)
example_sussman_circle: $(OBJ)
$(CC) -o $@ $^ $(CFLAGS) $(LIBS_PATH) $(LIBS)
all: example_sussman_circle
run: all
mpirun --oversubscribe -np 2 ./example_sussman_circle
.PHONY: clean all run
clean:
rm -f *.o *~ core example_sussman_circle
[pack]
files = main.cpp Makefile
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment