openssl/demos/sslecho/makefile
bobwirka 801c638c50 Added Simple SSL Echo Client/Server to demos.
Reviewed-by: Paul Dale <pauli@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/17260)
2022-04-12 15:12:57 +01:00

13 lines
183 B
Makefile

PROG ?= sslecho
all: $(PROG)
# Debug version.
#
$(PROG): main.c
$(CC) -O0 -g3 -W -Wall -I../../include -L../../ -o $(PROG) main.c -lssl -lcrypto
clean:
rm -rf $(PROG) *.o *.obj