~ubuntu-branches/ubuntu/saucy/ibutils/saucy

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
#--
# Copyright (c) 2004-2010 Mellanox Technologies LTD. All rights reserved.
#
# This software is available to you under a choice of one of two
# licenses.  You may choose to be licensed under the terms of the GNU
# General Public License (GPL) Version 2, available from the file
# COPYING in the main directory of this source tree, or the
# OpenIB.org BSD license below:
#
#     Redistribution and use in source and binary forms, with or
#     without modification, are permitted provided that the following
#     conditions are met:
#
#      - Redistributions of source code must retain the above
#        copyright notice, this list of conditions and the following
#        disclaimer.
#
#      - Redistributions in binary form must reproduce the above
#        copyright notice, this list of conditions and the following
#        disclaimer in the documentation and/or other materials
#        provided with the distribution.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
# BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
#--

## Makefile.am -- Process this file with automake to produce Makefile.in

# Support debug mode through config variable
if DEBUG
DBG = -O0 -g -Wall
else
DBG = -O2 -Wall
endif

AM_CXXFLAGS = $(DBG) $(OSM_CFLAGS)

if IBDM_REF_IS_USED
INCLUDES		= -I$(with_ibdm)/ibdm $(TCL_CPPFLAGS)
else
INCLUDES		= -I$(with_ibdm)/include $(TCL_CPPFLAGS)
endif


bin_PROGRAMS = ibmssh ibmsquit #ibmgtsim test_msgmgr test_client test_server ibmgt_client

if IBDM_REF_IS_USED
# we assume we are building a parallel tree
IBDM_PREFIX=$prefix
IBDM_LIB=-L../../ibdm/ibdm -libdmcom
IBDM_INC=-I$(srcdir)/../../ibdm/ibdm
IBDM_IFC=$(srcdir)/../../ibdm/ibdm/ibdm.i
else
IBDM_PREFIX=$(with_ibdm)
IBDM_LIB=-L$(with_ibdm)/lib -libdmcom
IBDM_INC=-I$(with_ibdm)/include/ibdm
IBDM_IFC=$(with_ibdm)/include/ibdm/ibdm.i
endif

AM_CPPFLAGS = -I$(INCLUDES) $(IBDM_INC) $(OSM_CFLAGS)
LDADD = $(IBDM_LIB) -lpthread

# AM_LDFLAGS = -static

# this is the main simulator
#ibmgtsim_SOURCES = sim.cpp server.cpp node.cpp dispatcher.cpp \
#	msgmgr.cpp simmsg.cpp tcpcomm.cpp sma.cpp pma.cpp
#ibmgtsim_CPPFLAGS = -DBUILD_STANDALONE_SIM=1

ibmssh_SOURCES = sim.cpp server.cpp node.cpp dispatcher.cpp \
	 ibmssh_wrap.cpp sma.cpp pma.cpp vsa.cpp randmgr.cpp

ibmssh_LDFLAGS = -static -Wl,-rpath -Wl,$(TCL_PREFIX)/lib \
	-Wl,-rpath -Wl,$(IBDM_PREFIX)/lib

ibmssh_LDADD = -libmscli $(IBDM_LIB) $(TCL_LIBS) -lpthread

ibmssh_DEPENDENCIES = libibmscli.la

# SWIG FILES:
SWIG_IFC_FILES= $(srcdir)/sim.i $(srcdir)/ib_types.i $(IBDM_IFC) \
   $(srcdir)/inttypes.i $(srcdir)/mads.i

#$(srcdir)/sim.cpp: $(srcdir)/git_version.h
sim.o: $(srcdir)/git_version.h

# track latest GIT version for this tree:
GIT=$(shell which git)

$(srcdir)/git_version.h:  @MAINTAINER_MODE_TRUE@ FORCE
	if test x$(GIT) != x ; then \
	   gitver=`cd $(srcdir) ; git rev-parse --verify HEAD`; \
	   changes=`cd $(srcdir) ; git diff . | grep ^diff | wc -l`; \
	else \
	   gitver=undefined; changes=0; \
	fi ; \
	if test $$changes != 0; then gitver="$$gitver with-local-mods"; fi; \
	echo "#define IBMGTSIM_CODE_VERSION \"$$gitver\"" > .git_version.h ;\
	if test -f $(srcdir)/git_version.h ; then \
		if test `diff .git_version.h $(srcdir)/git_version.h | wc -l` != 0; then \
			mv -f .git_version.h $(srcdir)/git_version.h; \
			echo "Updated code version to: $$gitver"; \
		fi; \
	else \
		mv -f .git_version.h $(srcdir)/git_version.h; \
		echo "Created code version file with version: $$gitver"; \
	fi;

FORCE:


# only generate the swig wrappers if they do not exist...
# so we avoid un-needed swig dependency
if HAS_SWIG
$(srcdir)/ibms_wrap.cpp: @MAINTAINER_MODE_TRUE@ $(SWIG_IFC_FILES)
	swig -I$(srcdir) $(IBDM_INC) -c++ -dhtml -tcl8 -o swig_wrap.c $(srcdir)/sim.i
	$(srcdir)/../utils/fixSwigWrapper -g -s -p -o $@
	rm -f swig_wrap.c

$(srcdir)/ibmssh_wrap.cpp: @MAINTAINER_MODE_TRUE@ $(SWIG_IFC_FILES)
	swig -I$(srcdir) $(IBDM_INC) -c++ -dhtml -tcl8  -ltclsh.i -o swig_wrap.c $(srcdir)/sim.i
	$(srcdir)/../utils/fixSwigWrapper -g -s -p -r ibms -o $@
	rm -f swig_wrap.c
endif

swigclean:
	rm -f $(srcdir)/ibms_wrap.cpp $(srcdir)/ibmssh_wrap.cpp *wrap.o

# we need there extra in the distribution as their dependency is not defined
EXTRA_DIST = swig_alternate_mangling.cpp

# Quiter for the server
ibmsquit_SOURCES = client.cpp msgmgr.cpp simmsg.cpp tcpcomm.cpp
ibmsquit_CPPFLAGS = -DBUILD_QUIT_CLIENT=1 -I$(INCLUDES)

# tester of the client code
#ibmgt_client_SOURCES = client.cpp msgmgr.cpp simmsg.cpp tcpcomm.cpp
#ibmgt_client_CPPFLAGS = -DBUILD_TEST_CLIENT=1

# simple client program for testing
#test_client_SOURCES = tcpcomm.cpp msgmgr.cpp
#test_client_CPPFLAGS = -DBUILD_TCP_COMM_CLIENT=1

# simple server program for testing
#test_server_SOURCES = tcpcomm.cpp msgmgr.cpp
#test_server_CPPFLAGS = -DBUILD_TCP_COMM_SERVER=1

# testing message manager
#test_msgmgr_SOURCES = msgmgr.cpp simmsg.cpp
#test_msgmgr_CPPFLAGS = -DMSG_MGR_TEST=1

# client library to be used by OSMV type sim:

# ibms shared library version triplet is:
# API_ID:API_VER:NUM_PREV_API_SUP = x:y:z
# * change of API_ID means new API
# * change of AGE means how many API backward compt
# * change of API_VER is required every version
# Results with SO version: x-z:z:y
LIB_VER_TRIPLET="1:0:0"
LIB_FILE_TRIPLET=1.0.0

lib_LTLIBRARIES = libibmscli.la

libibmscli_la_SOURCES = client.cpp simmsg.cpp msgmgr.cpp tcpcomm.cpp
#  -Wl,-rpath -Wl,$(TCL_PREFIX)/lib
libibmscli_la_LDFLAGS = -version-info $(LIB_VER_TRIPLET) -no-undefined

# we would like to export these headers during install
pkginclude_HEADERS = $(wildcard $(srcdir)/*.h)

# Don't distribute common.h, since it is build host dependent!
#dist-hook:
#	rm -f $(distdir)/common.h