Previous Next
Editing $SNIFF_DIR/make_support/<platform>.mk

Before you begin creating the server and client projects and configuring Make support for them, you will have to edit $SNIFF_DIR/make_support/<platform>.mk .
In this file, enter the paths of your Orbix IDL compiler installation and IDL binaries, library and include directories. The following is an example of what these lines in <platform>.mk should look like (highlighted in boldface):

# orbix installation directory
IDL_DIR = <installation_directory>

# binary, library and include directories
IDL_BINDIR = $(IDL_DIR)/<binaries_subdirectory>
IDL_LIBDIR = $(IDL_DIR)/<library_subdirectory>
IDL_INCDIR = $(IDL_DIR)/<include_subdirectory>

# IDL compiler
IDL = $(IDL_BINDIR)/idl
IDLFLAGS =
# server and client libraries
IDL_SERVER_LIB = -lITsrv
IDL_CLIENT_LIB = -lITclt

Previous Next