diff options
author | Rob Austein <sra@hactrn.net> | 2011-01-09 20:28:06 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2011-01-09 20:28:06 +0000 |
commit | f05001f84d966a0b0c80b9d5212c2f3ac11d1660 (patch) | |
tree | ea34ff5b7bf803ae94f839f34f46e145209536a3 /pywrap | |
parent | a852889d670f6dd1955bb430240798d7f69d342f (diff) |
Rework POW build so that we can use static libraries again.
svn path=/configure; revision=3602
Diffstat (limited to 'pywrap')
-rw-r--r-- | pywrap/Makefile.in | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/pywrap/Makefile.in b/pywrap/Makefile.in index 36432cd9..f3620535 100644 --- a/pywrap/Makefile.in +++ b/pywrap/Makefile.in @@ -1,16 +1,27 @@ # $Id$ CFLAGS = @CFLAGS@ -LDFLAGS = @LDFLAGS@ -LIBS = @LIBS@ -lssl -lcrypto +LDFLAGS = @LDFLAGS@ -L${abs_top_builddir}/openssl/openssl -Wl,-rpath,@OPENSSL_SHARED_LIBRARY_DIR@ +LIBS = -lssl -lcrypto + +PYTHON = @PYTHON@ + +abs_top_srcdir = @abs_top_srcdir@ +abs_top_builddir = @abs_top_builddir@ +prefix = @prefix@ +exec_prefix = @exec_prefix@ +libdir = @libdir@ all: pywrap pywrap: pywrap.c - AC_CFLAGS='${CFLAGS}' AC_LDFLAGS='${LDFLAGS}' AC_LIBS='${LIBS}' @PYTHON@ build.py + AC_CFLAGS='${CFLAGS}' AC_LDFLAGS='${LDFLAGS}' AC_LIBS='${LIBS}' ${PYTHON} build.py clean: rm -f *.o pywrap test: @true + +distclean: clean + rm -f Makefile |