CFLAGS=-g -O2
LDFLAGS=-lssl -lcrypto

test_client: test_client.c
	$(CC) $(CFLAGS) -o $@ $< $(LDFLAGS)
