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


1.9
date	2008.07.29.15.32.53;	author fpy;	state Exp;
branches;
next	1.8;

1.8
date	2005.12.08.04.44.20;	author rob;	state Exp;
branches;
next	1.7;

1.7
date	2004.01.28.00.39.03;	author rob;	state Exp;
branches;
next	1.6;

1.6
date	2001.08.02.02.00.14;	author hthomas;	state Exp;
branches;
next	1.5;

1.5
date	2001.07.17.22.07.18;	author hthomas;	state Exp;
branches;
next	1.4;

1.4
date	2001.07.11.17.03.13;	author hthomas;	state Exp;
branches;
next	1.3;

1.3
date	2001.07.09.15.09.26;	author hthomas;	state Exp;
branches;
next	1.2;

1.2
date	2001.07.09.14.23.14;	author hthomas;	state Exp;
branches;
next	1.1;

1.1
date	2001.07.09.12.25.49;	author hthomas;	state Exp;
branches;
next	;


desc
@@


1.9
log
@added global configuration file for make under autonomy
@
text
@##########################################################################
# Copyright 1999 MBARI                                             
##########################################################################
# Summary  : Makefile for Kearfott
# Filename : Makefile
# Author   : Hans Thomas
# Project  : 
# Version  : Version 1.0
# Created  : 12/06/99
# Modified : 12/06/99
# Archived :
##########################################################################
# Modification History:
# $Header: /home/cvs/auv-qnx/auv/altex/onboard/kearfott/Makefile,v 1.8 2005/12/08 04:44:20 rob Exp $
#
##########################################################################

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../utils \
	      	-I../framework  \
		-I../taskIF \
		-I../DataLog \
		-I../ahrs \
		-I../gps \
	      	-I/usr/include \
		-I..

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

LIBS        =   ../utils/utils.lib \
		../framework/auvFramework.lib \
		../DataLog/dataLog.lib \
		../taskIF/taskInterfaces.lib \
		../ahrs/AHRSOutput.o \
		../gps/GpsUtils.o \
		../gps/GpsOutput.o \
		/usr/local/lib/gctpc/geolib.a
#		../gps/GpsLog.o \

OBJS	=	Kearfott.o KearfottServer.o KearfottOutput.o DvlOutput.o \
		DvlServer.o DvlLog.o KearfottLog.o \
		GpsServer.o KearfottGpsLog.o


TARGETS =	kearfottTest kearfott kearfottServer kearfottDvlServer \
		kearfottPlayback kearfottGpsServer

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)

kearfottTest:	_kearfottTest.o $(OBJS) $(LIBS)
	$(LD) $(LDFLAGS) _kearfottTest.o $(OBJS) $(LIBS) -o $@@

kearfottPlayback:  _kearfottPlayback.o $(OBJS) $(LIBS)
	$(LD) $(LDFLAGS) _kearfottPlayback.o $(OBJS) $(LIBS) -o $@@

kearfottServer:	_kearfottServer.o $(OBJS) $(LIBS)
	$(LD) $(LDFLAGS) _kearfottServer.o $(OBJS) $(LIBS) -o $@@

kearfottDvlServer:	_dvlServer.o $(OBJS) $(LIBS)
	$(LD) $(LDFLAGS) _dvlServer.o $(OBJS) $(LIBS) -o $@@

kearfottGpsServer:	_gpsServer.o $(OBJS) $(LIBS)
	$(LD) $(LDFLAGS) _gpsServer.o $(OBJS) $(LIBS) -o $@@

kearfott:	_kearfott.o $(OBJS) $(LIBS)
	$(LD) $(LDFLAGS) _kearfott.o $(OBJS) $(LIBS) -o $@@

install:	$(TARGETS)
		cp -fnv $(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 $@@.tmp
	    @@mv $@@.tmp $@@

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

%.o: %.c 
	    $(CC) $(CFLAGS) $(INCLUDES) $< -o $@@	

%.o: %.cc
	    $(CCPP) $(CPPFLAGS) $(INCLUDES) $< -o $@@

DEST	    = .

MAKEFILE    = Makefile



depend:	

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

update:
	cvs update $(CC_SRCS) $MAKEFILE

commit:
	cvs commit $(CC_SRCS) $MAKEFILE

include       $(OBJS:.o=.d)
##########################################################################









@


1.8
log
@added -fnv to the install.
@
text
@d14 1
a14 1
# $Header: /data/altex/Master/auv/altex/onboard/kearfott/Makefile,v 1.7 2004/01/28 00:39:03 rob Exp $
d69 14
@


1.7
log
@Added code to parse and serve the information in the GPS GSA and VGT
strings.
@
text
@d14 1
a14 1
# $Header: /data/altex/Master/auv/altex/onboard/kearfott/Makefile,v 1.6 2001/08/02 02:00:14 hthomas Exp $
d90 2
a91 2
install:
		cp -f $(TARGETS) $(AUV_BIN_DIR)/.
@


1.6
log
@added debug printf()'s of dvl data; fixed dvl parsing
@
text
@d14 1
a14 1
# $Header: /usr/local/cvs/auv/altex/onboard/kearfott/Makefile,v 1.5 2001/07/17 22:07:18 hthomas Exp $
d45 1
d57 2
d60 1
d63 3
a65 1
		DvlServer.o DvlLog.o KearfottLog.o
d68 2
a69 2
		kearfottPlayback
       
d83 3
@


1.5
log
@increased functionality of kearfottTest program
@
text
@d14 1
a14 1
# $Header: /usr/local/cvs/auv/altex/onboard/kearfott/Makefile,v 1.4 2001/07/11 17:03:13 hthomas Exp $
d61 2
a62 1
TARGETS =	kearfottTest kearfott kearfottServer kearfottDvlServer
d68 3
@


1.4
log
@post-cruise check in
@
text
@d14 1
a14 1
# $Header: /usr/local/cvs/auv/altex/onboard/kearfott/Makefile,v 1.3 2001/07/09 15:09:26 hthomas Exp $
d55 2
a56 1
		../ahrs/AHRSOutput.o
@


1.3
log
@*** empty log message ***
@
text
@d14 1
a14 1
# $Header: /usr/local/cvs/auv/altex/onboard/kearfott/Makefile,v 1.2 2001/07/09 14:23:14 hthomas Exp $
d58 1
a58 1
		DvlServer.o DvlLog.o
@


1.2
log
@added a proper server
@
text
@d14 1
a14 1
# $Header: /usr/local/cvs/auv/altex/onboard/kearfott/Makefile,v 1.1 2001/07/09 12:25:49 hthomas Exp $
d57 2
a58 1
OBJS	=	Kearfott.o KearfottServer.o KearfottOutput.o DvlOutput.o
d60 1
a60 1
TARGETS =	kearfottTest kearfott kearfottServer
d69 3
@


1.1
log
@added kearfott driver code
@
text
@d14 1
a14 1
# $Header: /usr/local/cvs/auv/altex/onboard/octans/Makefile,v 1.1 2001/06/04 10:47:49 hthomas Exp $
d57 1
a57 1
OBJS	=	Kearfott.o
d59 1
a59 1
TARGETS =	kearfottTest kearfott
d65 3
@
