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

all: task9 task10

task9:
	$(CC) $(CFLAGS) task9.c $(LIB) $(CLIBS) -o task9
task10:
	$(CC) $(CFLAGS) task10.c $(LIB) $(CLIBS) -o task10
clean:
	rm task9 task10