mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-28 03:48:45 +08:00
17 lines
417 B
Makefile
17 lines
417 B
Makefile
# Copyright (c) 2014 Cesanta Software
|
|
# All rights reserved
|
|
|
|
PROG = ws_ssl
|
|
CFLAGS = -W -Wall -I../.. -I. -pthread -g -O0 $(CFLAGS_EXTRA)
|
|
SOURCES = ws_ssl.c ../../mongoose.c net_skeleton.c ssl_wrapper.c
|
|
|
|
all: $(PROG)
|
|
|
|
$(PROG): $(SOURCES)
|
|
$(CC) -o $(PROG) $(SOURCES) \
|
|
-DNS_ENABLE_SSL -DNOEMBED_NET_SKELETON \
|
|
-DSSL_WRAPPER_USE_AS_LIBRARY -lssl $(CFLAGS)
|
|
|
|
clean:
|
|
rm -rf $(PROG) *.exe *.dSYM *.obj *.exp .*o *.lib
|