summaryrefslogtreecommitdiffstats
path: root/web/server/h2o/libh2o/deps/ssl-conservatory/openssl/Makefile
blob: 0edaa7cbcb05c825c03fcb48c03163ddbf609144 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# Tested on FreeBSD, Ubuntu 10.04 and Cygwin
CC=gcc
CFLAGS=-c -Wall -std=c99 -pedantic
LDFLAGS=-lcrypto -lssl

all: test_client

test_client: test_client.o openssl_hostname_validation.o
	$(CC) test_client.o openssl_hostname_validation.o -o test_client $(LDFLAGS)

clean:
	rm -rf *.o test_client