diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2002-09-03 18:59:57 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2002-09-03 18:59:57 +0000 |
commit | 080e71570c49ceaa641148eb0ccf1fad75727b00 (patch) | |
tree | f20ae30ea32a8cecdc1a7394c2d755310dab4063 /include | |
parent | 46722ebad90ee0336a151a69406ed327c2fb5ac1 (diff) |
build OpenSSL without symlink trees:
* manpage related things moved to src/libssl/man/Makefile
* there are now 3 obj directories src/libssl/{crypto,ssl,man}/ instead
of one single src/libssl/obj
* instead of running Configure (with generates lots of symlinks, and
opensslconf.h) this patch stores pre-computed opensslconf.h files
in src/libssl/crypto/arch
* requires a make includes before the library can be built
* libssl and libcrypto can be build separately
(e.g. cd src/libssl/ssl && make obj && make)
* make depend is now supported
* no more symlink trees
tested by miod@ and fries@
Diffstat (limited to 'include')
-rw-r--r-- | include/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/Makefile b/include/Makefile index 1a8a58a4969..b221d44e48f 100644 --- a/include/Makefile +++ b/include/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.112 2002/06/16 14:42:22 naddy Exp $ +# $OpenBSD: Makefile,v 1.113 2002/09/03 18:59:55 markus Exp $ # $NetBSD: Makefile,v 1.59 1996/05/15 21:36:43 jtc Exp $ # @(#)Makefile 5.45.1.1 (Berkeley) 5/6/91 @@ -44,7 +44,7 @@ RDIRS= ../lib/libc_r ../lib/libcom_err ../lib/libcompat ../lib/libcurses \ ../sys/arch/${MACHINE} # Places using Makefile that needs a prerequisite target met before includes -PRDIRS= ../lib/libssl +PRDIRS= # Directories with an includes target that use Makefile.bsd-wrapper WDIRS= ../usr.sbin/httpd ../gnu/egcs/libio ../gnu/egcs/libstdc++ \ |