13 lines
301 B
Makefile
13 lines
301 B
Makefile
|
# Copyright (c) 2014 Cesanta Software
|
||
|
# All rights reserved
|
||
|
|
||
|
PROG = websocket_chat
|
||
|
CFLAGS = -W -Wall -I../.. -pthread -g -O0 $(CFLAGS_EXTRA)
|
||
|
SOURCES = $(PROG).c ../../net_skeleton.c
|
||
|
|
||
|
$(PROG): $(SOURCES)
|
||
|
$(CC) -o $(PROG) $(SOURCES) $(CFLAGS)
|
||
|
|
||
|
clean:
|
||
|
rm -rf $(PROG) *.exe *.dSYM *.obj *.exp .*o *.lib
|