summaryrefslogtreecommitdiff
path: root/set3/Makefile
blob: d3b3f03e80455e9176ace539d92cf95482cc491d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
LIB=../lib/lib2.c ../lib/lib.c ../lib/lib3.c
CC=gcc
CFLAGS := -g $(CFLAGS) 
CLIBS=`pkg-config --cflags --libs libcrypto`

all: task17 task18

task17:
	$(CC) $(CFLAGS) task17.c $(LIB) $(CLIBS) -o task17

task18:
	$(CC) $(CFLAGS) task18.c $(LIB) $(CLIBS) -o task18
clean:
	rm task17 task18