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

PROG = digest_auth
CFLAGS = -W -Wall -I../.. -pthread -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