summaryrefslogtreecommitdiff
path: root/src/Makefile.am
blob: 6bc5fb62e9acf49e7393ee41c49c47aac8d21b99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
lib_LTLIBRARIES = libzmq.la


if BUILD_CPP
include_HEADERS = ../cpp/zmq.hpp ../c/zmq.h
endif

if BUILD_C
if BUILD_CPP

else
include_HEADERS = ../c/zmq.h
endif
endif

libzmq_la_SOURCES = \
    app_thread.hpp \
    atomic_bitmap.hpp \
    atomic_counter.hpp \
    atomic_ptr.hpp \
    command.hpp \
    config.hpp \
    decoder.hpp \
    devpoll.hpp \
    dispatcher.hpp \
    encoder.hpp \
    epoll.hpp \
    err.hpp \
    fd.hpp \
    fd_signaler.hpp \
    i_inout.hpp \
    io_object.hpp \
    io_thread.hpp \
    ip.hpp \
    i_endpoint.hpp \
    i_engine.hpp \
    i_poller.hpp \
    i_poll_events.hpp \
    i_signaler.hpp \
    kqueue.hpp \
    msg_content.hpp \
    mutex.hpp \
    object.hpp \
    options.hpp \
    owned.hpp \
    pipe.hpp \
    platform.hpp \
    poll.hpp \
    select.hpp \
    session.hpp \
    simple_semaphore.hpp \
    socket_base.hpp \
    stdint.hpp \
    tcp_connecter.hpp \
    tcp_listener.hpp \
    tcp_socket.hpp \
    thread.hpp \
    uuid.hpp \
    windows.hpp \
    wire.hpp \
    ypipe.hpp \
    ypollset.hpp \
    yqueue.hpp \
    zmq_connecter.hpp \
    zmq_connecter_init.hpp \
    zmq_decoder.hpp \
    zmq_encoder.hpp \
    zmq_engine.hpp \
    zmq_listener.hpp \
    zmq_listener_init.hpp \
    app_thread.cpp \
    devpoll.cpp \
    dispatcher.cpp \
    epoll.cpp \
    err.cpp \
    fd_signaler.cpp \
    io_object.cpp \
    io_thread.cpp \
    ip.cpp \
    kqueue.cpp \
    object.cpp \
    options.cpp \
    owned.cpp \
    pipe.cpp \
    poll.cpp \
    select.cpp \
    session.cpp \
    socket_base.cpp \
    tcp_connecter.cpp \
    tcp_listener.cpp \
    tcp_socket.cpp \
    thread.cpp \
    uuid.cpp \
    ypollset.cpp \
    zmq.cpp \
    zmq_connecter.cpp \
    zmq_connecter_init.cpp \
    zmq_decoder.cpp \
    zmq_encoder.cpp \
    zmq_engine.cpp \
    zmq_listener.cpp \
    zmq_listener_init.cpp

libzmq_la_LDFLAGS = -version-info @LTVER@
libzmq_la_CXXFLAGS = -Wall -pedantic -Werror @ZMQ_EXTRA_CXXFLAGS@

dist-hook:
		-rm $(distdir)/src/platform.hpp