mirror of
https://github.com/openssl/openssl.git
synced 2024-12-27 06:21:43 +08:00
e33af8000f
Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Tim Hudson <tjh@openssl.org> (Merged from https://github.com/openssl/openssl/pull/22369)
15 lines
297 B
Makefile
15 lines
297 B
Makefile
CFLAGS = -I../../include -g -Wall
|
|
LDFLAGS = -L../..
|
|
LDLIBS = -lcrypto -lssl -lnghttp3
|
|
|
|
all: ossl-nghttp3-demo
|
|
|
|
clean:
|
|
$(RM) -f ossl-nghttp3-demo *.o
|
|
|
|
ossl-nghttp3-demo: ossl-nghttp3-demo.o ossl-nghttp3.o
|
|
$(CC) $(CFLAGS) -o "$@" $^ $(LDFLAGS) $(LDLIBS)
|
|
|
|
%.o: %.c
|
|
$(CC) $(CFLAGS) -c -o "$@" "$<"
|