# # Name: Makehead.solaris # # Purpose: This file is used to customize operating system and installation # dependent features of the mx_bluice_server makefiles. This # version is customized for Solaris using the native compiler. # # #========================================================================= # # Generally, you should not have to modify anything after this point. # MX_BLUICE_SERVER_NAME = mx_bluice_server MX_BLUICE_SERVER_OBJS = $(MX_BLUICE_SERVER_SRCS:.c=.$(OBJ)) #--------------------------------------------------------------------- MX_BLUICE_SERVER_DELETE = rm $(MX_BLUICE_SERVER_NAME) $(MX_BLUICE_SERVER_NAME): $(MX_BLUICE_SERVER_OBJS) -$(MX_BLUICE_SERVER_DELETE) $(CC) $(LINKFLAGS) -o $(MX_BLUICE_SERVER_NAME) \ $(MX_BLUICE_SERVER_OBJS) \ $(MX_BLUICE_SERVER_LIB_DIRS) \ $(MX_BLUICE_SERVER_LIBRARIES) -lc #--------------------------------------------------------------------- INCLUDES = -I$(LIBMXSRC) MX_BLUICE_SERVER_LIB_DIRS = -L$(LIBMXSRC) $(LIB_DIRS) MX_BLUICE_SERVER_LIBRARIES = -lMx $(LIBRARIES) #--------------------------------------------------------------------- mx_bluice_install: -mkdir $(MX_INSTALL_DIR)/sbin /usr/ucb/install -m 755 $(MX_BLUICE_SERVER_NAME) $(MX_INSTALL_DIR)/sbin