mongoose/examples/websocket_ssl_proxy/Makefile

18 lines
409 B
Makefile
Raw Normal View History

2014-08-03 19:40:10 +08:00
# Copyright (c) 2014 Cesanta Software
# All rights reserved
CFLAGS = -W -Wall -I../.. -I. -g -O0 $(CFLAGS_EXTRA)
2014-08-03 19:40:10 +08:00
SOURCES = ws_ssl.c ../../mongoose.c net_skeleton.c ssl_wrapper.c
2014-08-03 19:40:10 +08:00
PROG = ws_ssl
2014-09-10 00:00:49 +08:00
all: $(PROG)
$(PROG): $(SOURCES)
2014-08-03 19:40:10 +08:00
$(CC) -o $(PROG) $(SOURCES) \
-DNS_ENABLE_SSL -DNOEMBED_NET_SKELETON \
-DSSL_WRAPPER_USE_AS_LIBRARY -lssl $(CFLAGS)
2014-08-03 19:40:10 +08:00
clean:
rm -rf $(PROG) *.exe *.dSYM *.obj *.exp .*o *.lib