Skip to content

Commit 61f228b

Browse files
authored
Add files via upload
1 parent dcec90a commit 61f228b

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

Intermediate/makefile

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
2+
CC=gcc
3+
CFLAGS=-I.
4+
DEPS =
5+
OBJ = q1.o q2a.o q2b.o q2c.o q3a.o q3b.o q3c.o q4.o q5.o q6.o
6+
7+
%.o: %.c $(DEPS)
8+
$(CC) -pthread -o $@ $< $(CFLAGS)
9+
10+
all: $(OBJ)
11+
12+
clean:
13+
rm -f $(OBJ)

0 commit comments

Comments
 (0)