mirror of
https://github.com/openssl/openssl.git
synced 2024-12-09 05:51:54 +08:00
801c638c50
Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/17260)
13 lines
183 B
Makefile
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
|