Skip to content

Commit

Permalink
Merge pull request JuliaLang#796 from JuliaLang/webrepl-libuv
Browse files Browse the repository at this point in the history
Libuv rewrite of the Web REPL
  • Loading branch information
Keno committed May 3, 2012
2 parents 25398d1 + 0660c41 commit 6f78a24
Show file tree
Hide file tree
Showing 6 changed files with 1,117 additions and 1,584 deletions.
11 changes: 9 additions & 2 deletions ui/webserver/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,16 @@ include $(JULIAHOME)/Make.inc
override CFLAGS += $(JCFLAGS)
override CXXFLAGS += $(JCXXFLAGS)

LIBS = -lpthread
LIBS = -lpthread $(USRLIB)/uv.a
ifeq ($(OS), Linux)
LIBS += -lrt
endif

WEBSERVER_SRCS = webserver.cpp server.cpp network.cpp jsoncpp.cpp
ifeq ($(OS),WINNT)
LIBS += -lWs2_32 -lIphlpapi -lpsapi
endif

WEBSERVER_SRCS = webserver.cpp server.cpp jsoncpp.cpp

%.o: %.c
$(QUIET_CC)$(CC) $(CFLAGS) $(SHIPFLAGS) -c $< -o $@
Expand Down
Loading

0 comments on commit 6f78a24

Please sign in to comment.