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

all: task1 task2 task4 task5 task6

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

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

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

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

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

clean:
	rm task1 task2 task4 task5 task6