summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/mongoose/examples/multi_threaded_server/Makefile
blob: 2b08db12c779ea0c3f5b6d9fa63139b5119bf2bd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# Copyright (c) 2014 Cesanta Software
# All rights reserved

PROG = multi_threaded_server
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