mongoose/examples/server_data_push/Makefile

13 lines
325 B
Makefile
Raw Normal View History

2015-08-13 00:14:39 +08:00
# Copyright (c) 2015 Cesanta Software
# All rights reserved
PROG = server_data_push
CFLAGS = -W -Wall -I../.. -pthread -g -O0 -DMONGOOSE_ENABLE_THREADS $(CFLAGS_EXTRA)
SOURCES = $(PROG).c ../../mongoose.c
$(PROG): $(SOURCES)
$(CC) -o $(PROG) $(SOURCES) $(CFLAGS)
clean:
rm -rf $(PROG) *.exe *.dSYM *.obj *.exp .*o *.lib