Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
L
libzmq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
libzmq
Commits
24d12dc3
Commit
24d12dc3
authored
Mar 09, 2016
by
Pieter Hintjens
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1827 from bluca/make_dist_missing_files
Problem: make dist does not tar up macros.hpp
parents
6aa58198
6024dd5d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
6 deletions
+10
-6
Makefile.am
Makefile.am
+1
-0
ci_build.sh
ci_build.sh
+2
-3
Makefile.am
doc/Makefile.am
+7
-3
No files found.
Makefile.am
View file @
24d12dc3
...
...
@@ -85,6 +85,7 @@ src_libzmq_la_SOURCES = \
src/lb.cpp
\
src/lb.hpp
\
src/likely.hpp
\
src/macros.hpp
\
src/mailbox.cpp
\
src/mailbox.hpp
\
src/mailbox_safe.cpp
\
...
...
ci_build.sh
View file @
24d12dc3
...
...
@@ -27,9 +27,8 @@ if [ $BUILD_TYPE == "default" ]; then
(
./autogen.sh
&&
./configure
"
${
CONFIG_OPTS
[@]
}
"
&&
make
&&
(
if
make check
;
then
true
;
else
cat
test-suite.log
;
exit
1
;
fi
)
&&
make
install
export
DISTCHECK_CONFIGURE_FLAGS
=
"
${
CONFIG_OPTS
[@]
}
"
&&
make
VERBOSE
=
1 distcheck
)
||
exit
1
else
cd
./builds/
${
BUILD_TYPE
}
&&
./ci_build.sh
...
...
doc/Makefile.am
View file @
24d12dc3
...
...
@@ -23,22 +23,26 @@ MAN3 = zmq_bind.3 zmq_unbind.3 zmq_connect.3 zmq_disconnect.3 zmq_close.3 \
MAN7
=
zmq.7 zmq_tcp.7 zmq_pgm.7 zmq_inproc.7 zmq_ipc.7
\
zmq_null.7 zmq_plain.7 zmq_curve.7 zmq_tipc.7 zmq_vmci.7
MAN_DOC
=
$(MAN1)
$(MAN3)
$(MAN7)
MAN_DOC
=
MAN_TXT
=
$
(
MAN3:%.3
=
%.txt
)
MAN_TXT
+=
$
(
MAN7:%.7
=
%.txt
)
MAN_HTML
=
$
(
MAN_TXT:%.txt
=
%.html
)
MAN_HTML
=
MAINTAINERCLEANFILES
=
$(MAN_DOC)
$(MAN_HTML)
MAINTAINERCLEANFILES
=
EXTRA_DIST
=
asciidoc.conf
$(MAN_TXT)
if
INSTALL_MAN
MAN_DOC
+=
$(MAN1)
$(MAN3)
$(MAN7)
dist_man_MANS
=
$(MAN_DOC)
MAINTAINERCLEANFILES
+=
$(MAN_DOC)
endif
if
BUILD_DOC
MAN_HTML
+=
$
(
MAN_TXT:%.txt
=
%.html
)
EXTRA_DIST
+=
$(MAN_HTML)
MAINTAINERCLEANFILES
+=
$(MAN_HTML)
SUFFIXES
=
.html .txt .xml .3 .7
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment