summaryrefslogtreecommitdiffstats
path: root/demos/sslecho/makefile
blob: 1e91567277afe2ae3e0065ccc03ffb95f4ef7844 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
PROG ?= sslecho

all: $(PROG)

# Debug version.
#
$(PROG): main.c

	$(CC) -O0 -g3 -W -Wall -I../../include -L../../ -o $(PROG) main.c -lssl -lcrypto

test:

clean:
	rm -rf $(PROG) *.o *.obj