Commit e202d13d authored by drnull03's avatar drnull03

Added a Make file for making compilation easy

parent 590b0d58
CC = mpicc
CFLAGS = -O2 -Wall
TARGET = MatrixAvg
SRC = MatrixAvg.c
all: $(TARGET)
$(TARGET): $(SRC)
$(CC) $(CFLAGS) -o $(TARGET) $(SRC)
clean:
rm -f $(TARGET)
No preview for this file type
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment