Commit f65d3ca6 authored by Sergey Lyubka's avatar Sergey Lyubka

$(LIBS) -> $$LIBS

parent f46e4fac
...@@ -4,5 +4,5 @@ CFLAGS= -W -Wall -I.. -pthread -g ...@@ -4,5 +4,5 @@ CFLAGS= -W -Wall -I.. -pthread -g
all: all:
OS=`uname`; \ OS=`uname`; \
test "$$OS" = Linux && LIBS="-ldl" ; \ test "$$OS" = Linux && LIBS="-ldl" ; \
$(CC) $(CFLAGS) chat.c ../mongoose.c $(LIBS) $(ADD) -o $(PROG) $(CC) $(CFLAGS) chat.c ../mongoose.c $$LIBS $(ADD) -o $(PROG)
./$(PROG) ./$(PROG)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment