Skip to content
Snippets Groups Projects
Commit 2d880c4f authored by Sergey Lyubka's avatar Sergey Lyubka
Browse files

Moved auth.c to separate dir

parent 4ca4c862
No related branches found
No related tags found
No related merge requests found
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
CFLAGS = -W -Wall -I.. -pthread -g -pipe $(CFLAGS_EXTRA) CFLAGS = -W -Wall -I.. -pthread -g -pipe $(CFLAGS_EXTRA)
RM = rm -rf RM = rm -rf
OUT = -o $@ OUT = -o $@
ALL_PROGS = server post auth ALL_PROGS = server post
NS = ../../net_skeleton NS = ../../net_skeleton
SW = ../../ssl_wrapper SW = ../../ssl_wrapper
......
# Copyright (c) 2014 Cesanta Software
# All rights reserved
PROG = digest_auth
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
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment