changeset 2856:4d32dc6aca86

By default, build shared instead of static libraries.
author John W. Eaton <jwe@octave.org>
date Thu, 15 Nov 2012 16:02:40 -0500
parents 47558e958113
children 94c2c61023a0
files Makefile
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile	Thu Nov 15 16:11:45 2012 -0500
+++ b/Makefile	Thu Nov 15 16:02:40 2012 -0500
@@ -4,8 +4,8 @@
 # Enable shared or static libs, or perhaps both.  At least one 
 # package uses --with instead of --enable.  Probably it doesn't
 # make sense to disable both...
-BUILD_SHARED := no
-BUILD_STATIC := yes
+BUILD_SHARED := yes
+BUILD_STATIC := no
 ifeq ($(BUILD_SHARED),yes)
   ifeq ($(BUILD_STATIC),yes)
     ENABLE_SHARED_OR_STATIC := --enable-shared --enable-static