Skip to content

Commit

Permalink
update to include stream.cpp and curve related
Browse files Browse the repository at this point in the history
  • Loading branch information
pijyoi committed Jul 13, 2013
1 parent 5ac1964 commit 0f28b72
Showing 1 changed file with 23 additions and 7 deletions.
30 changes: 23 additions & 7 deletions builds/mingw32/Makefile.mingw32
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,29 @@ CC=gcc
CFLAGS=-Wall -Os -g -DDLL_EXPORT -DFD_SETSIZE=1024 -I.
LIBS=-lws2_32

OBJS = address.o clock.o ctx.o dealer.o devpoll.o dist.o epoll.o err.o fq.o \
io_object.o io_thread.o ip.o ipc_address.o ipc_connecter.o ipc_listener.o kqueue.o lb.o \
mailbox.o msg.o mtrie.o object.o options.o own.o pair.o pgm_receiver.o pgm_sender.o \
pgm_socket.o pipe.o poll.o poller_base.o precompiled.o proxy.o pub.o pull.o push.o \
random.o raw_decoder.o raw_encoder.o reaper.o rep.o req.o router.o select.o session_base.o \
signaler.o socket_base.o stream_engine.o sub.o tcp.o tcp_address.o tcp_connecter.o tcp_listener.o \
thread.o trie.o v1_decoder.o v1_encoder.o v2_decoder.o v2_encoder.o xpub.o xsub.o zmq.o zmq_utils.o
OBJS = ctx.o reaper.o dist.o err.o \
clock.o random.o \
object.o own.o \
io_object.o io_thread.o \
lb.o fq.o \
address.o tcp_address.o ipc_address.o \
ipc_connecter.o ipc_listener.o \
tcp_connecter.o tcp_listener.o \
mailbox.o msg.o mtrie.o \
pipe.o precompiled.o proxy.o \
signaler.o stream_engine.o \
thread.o trie.o \
ip.o tcp.o \
pgm_socket.o pgm_receiver.o pgm_sender.o \
raw_decoder.o raw_encoder.o \
v1_decoder.o v1_encoder.o v2_decoder.o v2_encoder.o \
socket_base.o session_base.o options.o \
req.o rep.o push.o pull.o pub.o sub.o pair.o \
dealer.o router.o xpub.o xsub.o stream.o \
poller_base.o select.o poll.o epoll.o kqueue.o devpoll.o \
curve_client.o curve_server.o \
mechanism.o null_mechanism.o plain_mechanism.o \
zmq.o zmq_utils.o

%.o: ../../src/%.cpp
$(CC) -c -o $@ $< $(CFLAGS)
Expand Down

0 comments on commit 0f28b72

Please sign in to comment.