aboutsummaryrefslogtreecommitdiff
path: root/openssl/Makefile
blob: 78764be99786f30587a47de6f8928d1d5a2c73d9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# $Id$

VERSION = 0.9.8e

all: openssl-${VERSION}/Makefile
	cd openssl-${VERSION}; make $@

clean:
	rm -rf openssl-${VERSION}

openssl-${VERSION}/Makefile: openssl-${VERSION}/config
	cd openssl-${VERSION}; PERL=/usr/bin/perl ./config enable-rfc3779 no-dso

openssl-${VERSION}/config: openssl-${VERSION}.tar.gz
	gzcat openssl-${VERSION}.tar.gz | tar -xf -
	ln -s . openssl-${VERSION}/lib
	touch $@

install:
	@echo Not attempting to install modified OpenSSL, if you want that, do it yourself