head	1.4;
access;
symbols
	Hobson_Rock_14Dec2009:1.4
	HEAD_CTD_MERGE:1.2.0.4
	BEFORE_VCS_CHANGE:1.4
	Hobson_Rock_16Oct2009:1.4
	Hobson_Rock_29June2009:1.4
	Jun15_2009:1.4
	Apr_7_2009:1.4
	mar19_2009:1.4
	mar18_2009:1.4
	feb13_2009:1.4
	feb10-2009:1.4
	feb09-2009:1.4
	dec15_2008:1.4
	dec12_2008:1.4
	ST_10_5:1.4
	ST_10_4b:1.4
	ST_10_4:1.4
	ST_10_3:1.4
	ST10_HW:1.4
	ST_10_2:1.4
	ST_10_1:1.4
	ST_10_0:1.4
	AUTONOMY_BRANCH:1.4.0.2
	AUTONOMY:1.4
	AUTONOMY-2008_07_30:1.4
	TREX_ST_1_0:1.2
	RELEASE_27_April_2007_CTD_1:1.2.0.2
	Development_With_Wayne_060804:1.2
	Dev-27Jan2004:1.2
	Rel-15Dec2003:1.2
	Dev-2Dec2003:1.2
	Dev-1Dec2003:1.2
	Rel-26Nov2003:1.2;
locks; strict;
comment	@# @;


1.4
date	2008.07.29.15.32.52;	author fpy;	state Exp;
branches;
next	1.3;

1.3
date	2007.11.01.15.20.43;	author fpy;	state Exp;
branches;
next	1.2;

1.2
date	2002.08.16.19.55.53;	author dorado;	state Exp;
branches;
next	1.1;

1.1
date	2001.06.06.22.25.46;	author henthorn;	state Exp;
branches;
next	;


desc
@@


1.4
log
@added global configuration file for make under autonomy
@
text
@##########################################################################
# Copyright 2001 MBARI                                             
##########################################################################
# Summary  : Makefile for Isus Driver
# Filename : Makefile
# Author   : Rich Henthorn
# Project  : 
# Version  : Version 1.0
# Created  : 06/01/01
# Archived :
##########################################################################
# Modification History:
#
##########################################################################

CC	    = cc
CCPP	    = cc
LD	    = cc
AR 	    = wlib
DEPEND_TOOL = makedepend

AUV_BIN_DIR = ../bin

DEBUG 	    = -g
EXCEPTION_HANDLING = -WC,-xs

## OPTIMIZE = -4 -Os
OPTIMIZE = 

## MAP_OUTPUT = -S -ms -M
MAP_OUTPUT =

CFLAGS	    = -c $(DEBUG) $(MAP_OUTPUT) $(OPTIMIZE) -D_QNX -DUNIX  
CPPFLAGS    = -c $(DEBUG) $(MAP_OUTPUT) $(OPTIMIZE) -D_QNX -DUNIX \
	         $(EXCEPTION_HANDLING)

INCLUDES    = -I.  \
	      -I../ \
	      -I../utils \
	      -I../framework \
	      -I../system \
	      -I../taskIF \
	      -I../DataLog \
	      -I../Simulator \
	      -I/usr/include           

LDFLAGS	    = -g
LIBPATH	    = /usr/lib:../lib

LIBS        =   ../utils/utils.lib \
		../DataLog/dataLog.lib \
		../taskIF/taskInterfaces.lib \
		../framework/auvFramework.lib

OBJS	    =	IsusOutput.o \
		Isus.o \
		IsusLog.o \
		IsusServer.o

TARGETS =	isus \
		isusTest \
		isusServer

ifeq ($(AUTONOMY), 1)
# Specific configuration for AUTONOMY group
# this allow to alter the value of the different variables
# used by make when AUTONOMY variable has been set to 1
# on the calling shell  
-include ../autonomy.make # this file contains the general
                       # modifications we want to apply to
                       # all the modules 

# following line are more specific to this file 

# end of AUTONOMY specific
endif 

all:		$(TARGETS)


isusServer:	_isusServer.o $(OBJS) $(LIBS)
	$(LD) $(LDFLAGS) _isusServer.o $(OBJS) $(LIBS) -o $@@


#isusDriver:	_isusDriver.o $(OBJS) $(LIBS)
#	$(LD) $(LDFLAGS) _isusDriver.o $(OBJS) $(LIBS) -o $@@
#

isus:	_isus.o $(OBJS) $(LIBS)
	$(LD) $(LDFLAGS) _isus.o $(OBJS) $(LIBS) -o $@@

isusTest:	_isusTestSA.o $(OBJS) $(LIBS)
	$(LD) $(LDFLAGS) _isusTestSA.o $(OBJS) $(LIBS) -o $@@


install:
		cp -f $(TARGETS)		$(AUV_BIN_DIR)/. 

##########################################################################
# Do not modify anything below this line unless absolutely necessary

.SUFFIXES:
.SUFFIXES:	.o .c .cc .d .idl

%.d: %.c
	    @@echo Generating dependencies for $?
	    @@$(DEPEND_TOOL) $(INCLUDES) $? -f $@@

%.d: %.cc
	    @@echo Generating dependencies for $?
	    @@$(DEPEND_TOOL) $(INCLUDES) $? -f $@@ 

%.o: %.c 
	    $(CC) $(CFLAGS) $(INCLUDES) $< -o $@@	
	    @@echo
%.o: %.cc
	    $(CCPP) $(CPPFLAGS) $(INCLUDES) $< -o $@@
	    @@echo

DEST	    = .

MAKEFILE    = Makefile

include       $(OBJS:.o=.d)

depend:	

clean:
	rm -f core *.o $(OBJS:.o=.d) *.lib *.yy *.tab.* $(TARGETS)

update:
	cvs update $(CC_SRCS) $MAKEFILE

commit:
	cvs commit $(CC_SRCS) $MAKEFILE

##########################################################################









@


1.3
log
@implemented isus interface server
@
text
@d64 14
@


1.2
log
@Change target name isusTestSA to isusTest to enable the td utility to work with isus
@
text
@d57 2
a58 1
		IsusLog.o 
d61 2
a62 1
		isusTest
d67 3
a69 3
#isusServer:	_isusServer.o $(OBJS) $(LIBS)
#	$(LD) $(LDFLAGS) _isusServer.o $(OBJS) $(LIBS) -o $@@
#
@


1.1
log
@Makefile for Isus driver stuff.
@
text
@d60 1
a60 1
		isusTestSA
d76 1
a76 1
isusTestSA:	_isusTestSA.o $(OBJS) $(LIBS)
@

