6 lines
78 B
Makefile
6 lines
78 B
Makefile
TARGETS = main
|
|
|
|
all: ${TARGETS}
|
|
|
|
main: main.cpp
|
|
mpicxx -Wall -Wextra $< -o $@
|