mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-04 18:29:01 +08:00
13 lines
288 B
Makefile
13 lines
288 B
Makefile
|
# Copyright (c) 2014 Cesanta Software
|
||
|
# All rights reserved
|
||
|
|
||
|
PROG = websocket_chat
|
||
|
CFLAGS = -W -Wall -I../.. -g -O0 $(CFLAGS_EXTRA)
|
||
|
SOURCES = $(PROG).c ../../mongoose.c
|
||
|
|
||
|
$(PROG): $(SOURCES)
|
||
|
$(CC) -o $(PROG) $(SOURCES) $(CFLAGS)
|
||
|
|
||
|
clean:
|
||
|
rm -rf $(PROG) *.exe *.dSYM *.obj *.exp .*o *.lib
|