Skip to content

Commit 291ec81

Browse files
authored
Add files via upload
1 parent d52f12f commit 291ec81

File tree

2 files changed

+553
-0
lines changed

2 files changed

+553
-0
lines changed

Makefile

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
CC = mpicc
2+
3+
SRC = main.c
4+
OBJ = $(SRC:.c=.o)
5+
6+
all: hw4
7+
8+
hw4: $(OBJ)
9+
@echo LINK $(OBJ) INTO $@
10+
$(CC) $(OBJ) -o $@
11+
12+
clean:
13+
rm -f *.o *~ hw4

0 commit comments

Comments
 (0)