summaryrefslogtreecommitdiff
path: root/Makefile
blob: 5e5d683f46d321002ba4e1665007729297cdf3bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
LIB=lib.c
CC=gcc

all: task4 task5 task6

task4:
	$(CC) task4.c $(LIB) -o task4

task5:
	$(CC) task5.c $(LIB) -o task5

task6:
	$(CC) task6.c $(LIB) -o task6

clean:
	rm task4 task5 task6