|
From: <cs...@us...> - 2010-02-11 19:01:32
|
Revision: 79
http://bespp.svn.sourceforge.net/bespp/?rev=79&view=rev
Author: csmith
Date: 2010-02-11 19:01:25 +0000 (Thu, 11 Feb 2010)
Log Message:
-----------
- pass extra parameters to compiler/linker
Modified Paths:
--------------
trunk/Make.config
trunk/besclient/Makefile
trunk/besserver/Makefile
Modified: trunk/Make.config
===================================================================
--- trunk/Make.config 2010-02-10 20:38:51 UTC (rev 78)
+++ trunk/Make.config 2010-02-11 19:01:25 UTC (rev 79)
@@ -50,13 +50,15 @@
#
-# Any extra include and lib directories, or libraries
+# Any extra include and lib directories, libraries, and compiler/linker flags
#
# -lnsl needed for Linux systems
#
#EXTRA_INC = -I/usr/local/include
#EXTRA_LIB = -L/usr/local/lib
EXTRA_LIBS = -lnsl
+EXTRA_CFLAGS =
+EXTRA_LDFLAGS =
ifeq ($(RM),rm_lsf)
RM_INC = $(LSF_INC)
Modified: trunk/besclient/Makefile
===================================================================
--- trunk/besclient/Makefile 2010-02-10 20:38:51 UTC (rev 78)
+++ trunk/besclient/Makefile 2010-02-11 19:01:25 UTC (rev 79)
@@ -11,8 +11,8 @@
http://schemas.ggf.org/jsdl/2005/11/jsdl-posix
CC = gcc
-CFLAGS = -g $(GSOAP_DEF) -I. $(GSOAP_INC) $(EXTRA_INC)
-LDFLAGS = -g -L. $(EXTRA_LIB)
+CFLAGS = -g $(GSOAP_DEF) -I. $(GSOAP_INC) $(EXTRA_INC) $(EXTRA_CFLAGS)
+LDFLAGS = -g -L. $(EXTRA_LIB) $(EXTRA_LDFLAGS)
LIBS = -lbes -lssl -lcrypto $(EXTRA_LIBS)
BES_WSDL = bes-factory.wsdl
Modified: trunk/besserver/Makefile
===================================================================
--- trunk/besserver/Makefile 2010-02-10 20:38:51 UTC (rev 78)
+++ trunk/besserver/Makefile 2010-02-11 19:01:25 UTC (rev 79)
@@ -11,8 +11,8 @@
# http://schemas.ggf.org/jsdl/2005/11/jsdl-posix
CC = gcc
-CFLAGS = -g $(GSOAP_DEF) -I. $(GSOAP_INC) $(RM_INC) $(EXTRA_INC)
-LDFLAGS = -g $(EXTRA_LIB)
+CFLAGS = -g $(GSOAP_DEF) -I. $(GSOAP_INC) $(RM_INC) $(EXTRA_INC) $(EXTRA_CFLAGS)
+LDFLAGS = -g $(EXTRA_LIB) $(EXTRA_LDFLAGS)
LIBS = -lssl -lcrypto -lpam $(RM_LIBS) $(EXTRA_LIBS)
BES_WSDL = bes-factory.wsdl
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|