~ubuntu-branches/ubuntu/trusty/stunnel4/trusty

« back to all changes in this revision

Viewing changes to tools/Makefile.in

  • Committer: Package Import Robot
  • Author(s): Luis Rodrigo Gallardo Cruz
  • Date: 2012-02-12 12:06:37 UTC
  • mfrom: (10.1.5 sid)
  • Revision ID: package-import@ubuntu.com-20120212120637-r7s1fkzh6toyg7z2
Tags: 3:4.52-1
* New upstream version 4.52.
* Do not enable chroot in sample config file. It is misleading to users, it
  suggests it can be used with no further changes. Closes: #652812
* Remove log files on purge. Closes: #657135

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
47
47
        $(ACLOCAL_M4)
48
48
mkinstalldirs = $(install_sh) -d
 
49
CONFIG_HEADER = $(top_builddir)/src/config.h
49
50
CONFIG_CLEAN_FILES = stunnel.conf-sample stunnel.init stunnel.service
50
51
CONFIG_CLEAN_VPATH_FILES =
51
52
SOURCES =
134
135
SED = @SED@
135
136
SET_MAKE = @SET_MAKE@
136
137
SHELL = @SHELL@
 
138
SSLDIR = @SSLDIR@
137
139
STRIP = @STRIP@
138
140
VERSION = @VERSION@
139
141
abs_builddir = @abs_builddir@
183
185
sbindir = @sbindir@
184
186
sharedstatedir = @sharedstatedir@
185
187
srcdir = @srcdir@
186
 
ssldir = @ssldir@
 
188
stunnel_CFLAGS = @stunnel_CFLAGS@
 
189
stunnel_LDFLAGS = @stunnel_LDFLAGS@
 
190
stunnel_LDLAGS = @stunnel_LDLAGS@
187
191
sysconfdir = @sysconfdir@
188
192
target_alias = @target_alias@
189
193
top_build_prefix = @top_build_prefix@
198
202
examples_DATA = ca.html ca.pl importCA.html importCA.sh script.sh \
199
203
        stunnel.spec stunnel.init stunnel.service
200
204
 
201
 
openssl = $(ssldir)/bin/openssl
 
205
OPENSSL = $(SSLDIR)/bin/openssl
202
206
all: all-am
203
207
 
204
208
.SUFFIXES:
444
448
                else \
445
449
                        RND=""; \
446
450
                fi; \
447
 
                $(openssl) req -new -x509 -days 365 $$RND \
 
451
                $(OPENSSL) req -new -x509 -days 365 $$RND \
448
452
                        -config $(srcdir)/stunnel.cnf \
449
453
                        -out stunnel.pem -keyout stunnel.pem; \
450
 
                $(openssl) gendh $$RND 1024 >> stunnel.pem; \
451
 
                $(openssl) x509 -subject -dates -fingerprint -noout -in stunnel.pem; \
 
454
                $(OPENSSL) gendh $$RND 1024 >> stunnel.pem; \
 
455
                $(OPENSSL) x509 -subject -dates -fingerprint -noout -in stunnel.pem; \
452
456
                ${INSTALL} -m 600 stunnel.pem $(DESTDIR)$(confdir)/stunnel.pem; \
453
457
                rm stunnel.pem; \
454
458
        fi