Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
Tor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Benjamin J. Thompson
Tor
Commits
2606c8b2
Commit
2606c8b2
authored
12 years ago
by
Stewart Smith
Committed by
Nick Mathewson
12 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix up make distcheck and greatly simplify docs dependencies (although it's still a bit odd)
parent
2e80ae89
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
doc/include.am
+10
-32
10 additions, 32 deletions
doc/include.am
src/common/include.am
+7
-5
7 additions, 5 deletions
src/common/include.am
with
17 additions
and
37 deletions
doc/include.am
+
10
−
32
View file @
2606c8b2
...
...
@@ -17,10 +17,10 @@ all_mans = $(regular_mans) doc/tor-fw-helper
if USE_ASCIIDOC
if USE_FW_HELPER
nodist_
man_MANS = $(all_mans:=.1)
man_MANS = $(all_mans:=.1)
doc_DATA = $(all_mans:=.html)
else
nodist_
man_MANS = $(regular_mans:=.1)
man_MANS = $(regular_mans:=.1)
doc_DATA = $(regular_mans:=.html)
endif
html_in = $(all_mans:=.html.in)
...
...
@@ -30,7 +30,7 @@ else
html_in =
man_in =
txt_in =
nodist_
man_MANS =
man_MANS =
doc_DATA =
endif
...
...
@@ -42,48 +42,26 @@ EXTRA_DIST+= doc/HACKING doc/asciidoc-helper.sh \
docdir = @docdir@
asciidoc_product = $(
nodist_
man_MANS) $(doc_DATA)
asciidoc_product = $(man_MANS) $(doc_DATA)
# Generate the html documentation from asciidoc, but don't do
# machine-specific replacements yet
$(html_in) :
$(html_in) :
$(txt_in)
$(AM_V_GEN)$(top_srcdir)/doc/asciidoc-helper.sh html @ASCIIDOC@ $(top_srcdir)/$@
doc/tor.html.in : doc/tor.1.txt
doc/torify.html.in : doc/torify.1.txt
doc/tor-gencert.html.in : doc/tor-gencert.1.txt
doc/tor-resolve.html.in : doc/tor-resolve.1.txt
doc/tor-fw-helper.html.in : doc/tor-fw-helper.1.txt
# Generate the manpage from asciidoc, but don't do
# machine-specific replacements yet
$(man_in) :
$(man_in) :
$(txt_in)
$(AM_V_GEN)$(top_srcdir)/doc/asciidoc-helper.sh man @A2X@ $(top_srcdir)/$@
doc/tor.1.in : doc/tor.1.txt
doc/torify.1.in : doc/torify.1.txt
doc/tor-gencert.1.in : doc/tor-gencert.1.txt
doc/tor-resolve.1.in : doc/tor-resolve.1.txt
doc/tor-fw-helper.1.in : doc/tor-fw-helper.1.txt
# use ../config.status to swap all machine-specific magic strings
# in the asciidoc with their replacements.
$(asciidoc_product) :
$(asciidoc_product) : $(txt_in) $(man_in)
$(MKDIR_P) $(@D)
$(AM_V_GEN)if test -e $(top_srcdir)/$@.in && ! test -e $@.in ; then \
cp $(top_srcdir)/$@.in
doc/.
; \
cp $(top_srcdir)/$@.in
$@
; \
fi
$(AM_V_GEN)$(top_srcdir)/config.status --file=$@;
doc/tor.1 : doc/tor.1.in
doc/torify.1 : doc/torify.1.in
doc/tor-gencert.1 : doc/tor-gencert.1.in
doc/tor-resolve.1 : doc/tor-resolve.1.in
doc/tor-fw-helper.1 : doc/tor-fw-helper.1.in
doc/tor.html : doc/tor.html.in
doc/torify.html : doc/torify.html.in
doc/tor-gencert.html : doc/tor-gencert.html.in
doc/tor-resolve.html : doc/tor-resolve.html.in
doc/tor-fw-helper.html : doc/tor-fw-helper.html.in
$(AM_V_GEN)$(CONFIG_STATUS) --file=$@;
CLEANFILES+= $(asciidoc_product) config.log
DISTCLEANFILES+= $(html_in) $(man_in)
This diff is collapsed.
Click to expand it.
src/common/include.am
+
7
−
5
View file @
2606c8b2
...
...
@@ -56,15 +56,17 @@ noinst_HEADERS+= \
src/common/tortls.h \
src/common/util.h
DISTCLEANFILES+= src/common/common_sha1.i
src/common/common_sha1.i: $(libor_SOURCES) $(libor_crypto_a_SOURCES) $(noinst_HEADERS)
if test "@SHA1SUM@" != none; then \
(cd "$(srcdir)" && "@SHA1SUM@" $(src_common_libor_SOURCES) $(src_common_libor_crypto_a_SOURCES) $(noinst_HEADERS)) | "@SED@" -n 's/^\(.*\)$$/"\1\\n"/p' >
src/common/common_sha1.i
; \
(cd "$(srcdir)" && "@SHA1SUM@" $(src_common_libor_SOURCES) $(src_common_libor_crypto_a_SOURCES) $(noinst_HEADERS)) | "@SED@" -n 's/^\(.*\)$$/"\1\\n"/p' >
$@
; \
elif test "@OPENSSL@" != none; then \
(cd "$(srcdir)" && "@OPENSSL@" sha1 $(src_common_libor_SOURCES) $(src_Common_libor_crypto_a_SOURCES) $(noinst_HEADERS)) | "@SED@" -n 's/SHA1(\(.*\))= \(.*\)/"\2 \1\\n"/p' >
src/common/common_sha1.i
; \
(cd "$(srcdir)" && "@OPENSSL@" sha1 $(src_common_libor_SOURCES) $(src_Common_libor_crypto_a_SOURCES) $(noinst_HEADERS)) | "@SED@" -n 's/SHA1(\(.*\))= \(.*\)/"\2 \1\\n"/p' >
$@
; \
else \
rm
src/common/common_sha1.i
; \
touch
src/common/common_sha1.i
; \
rm
$@
; \
touch
$@
; \
fi
src/common/util_codedigest.
c
: src/common/common_sha1.i
src/common/util_codedigest.
o
: src/common/common_sha1.i
src/common/crypto.c: src/common/sha256.c
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment