summaryrefslogtreecommitdiffstats
path: root/mongoose/examples/Makefile
blob: 46691e31c33515cca58957cd419b8f87248b5157 (plain)
1
2
3
4
5
6
7
CFLAGS=	-W -Wall -I.. -pthread -g

all:
	OS=`uname`; \
	  test "$$OS" = Linux && LIBS="-ldl" ; \
	  $(CC) $(CFLAGS) hello.c ../mongoose.c  $$LIBS $(ADD) -o hello;
	  $(CC) $(CFLAGS) chat.c ../mongoose.c  $$LIBS $(ADD) -o chat