
# OK, which compiler can we use to build our library with?
SL_CC = cc

# How do we declare which one we are?
IO0 = -DSNIPE_LITE

# We must choose which device we are using for our external interface
# Note that the system selects the first cnfigured, running interface of
# the type selected.
# If you need to select a particular one set the option to USE_NAMED
# and define the EXT_IF explicitly.
#
# For general options select only one.
#

IO1 = -DUSE_ETHER
#IO1 = -DUSE_ATM
#IO1 = -DUSE_FDDI
#IO1 = -DUSE_HPPI
#IO1 = -DUSE_CSS

# Leave blank except in special cases.
IO2 = 

# Special cases.
#IO1 = -DUSE_NAMED
#IO2 = -DEXT_IF=\"ifdevname\"

# Above options are compiled to make the INTER_OPTS
INTER_OPTS = $(IO0) $(IO1) $(IO2)

# Locations of stuff... like header files, object files library files
# 

IC_INC = -I../snipe_lite



# Library file you link to, if you need this stuff...
IC_LIB =



# Obj file list to be added to the libmpiconn.a file :)
# if the user does not need to link to IC_LIB
# but can instead just do a final link in a single go

IC_LIB_OBJS = ../snipe_lite/$(MPI_TYPE)/$(MPI_ARCH)/conn.o \
	      ../snipe_lite/$(MPI_TYPE)/$(MPI_ARCH)/ifinfo.o


# working directory
WDIR = $(MPI_TYPE)/$(MPI_ARCH)

# final library directory
LDIR = ../libc/$(MPI_TYPE)/$(MPI_ARCH)
FLDIR = ../libf/$(MPI_TYPE)/$(MPI_ARCH)

