head	1.14;
access;
symbols
	OctansJune5:1.14
	Ver3-0:1.12
	Ver2-4:1.12
	Ver2-3-2:1.7
	Ver2-3:1.7
	Ver2-2:1.6
	Ver2-1:1.6
	Ver1-11:1.4
	Ver1-10:1.4
	Ver1-9:1.2
	Ver1-8:1.2
	Ver1-7:1.2
	Ver1-6:1.2
	Ver1-5:1.2
	Ver1-4-1:1.2
	Ver1-4:1.2
	Ver1-3:1.2
	Ver1-2:1.2
	Ver1-1:1.2
	Validate1:1.2
	OdysseyMatch2:1.1;
locks; strict;
comment	@# @;


1.14
date	2001.06.02.21.42.51;	author hthomas;	state Exp;
branches;
next	1.13;

1.13
date	2001.06.02.21.33.44;	author hthomas;	state Exp;
branches;
next	1.12;

1.12
date	2000.11.28.18.05.51;	author hthomas;	state Exp;
branches;
next	1.11;

1.11
date	2000.10.26.17.56.58;	author hthomas;	state Exp;
branches;
next	1.10;

1.10
date	2000.10.16.20.19.09;	author hthomas;	state Exp;
branches;
next	1.9;

1.9
date	2000.10.13.23.35.26;	author hthomas;	state Exp;
branches;
next	1.8;

1.8
date	2000.09.19.23.09.54;	author oreilly;	state Exp;
branches;
next	1.7;

1.7
date	2000.08.11.17.47.52;	author oreilly;	state Exp;
branches;
next	1.6;

1.6
date	2000.05.23.01.01.38;	author oreilly;	state Exp;
branches;
next	1.5;

1.5
date	2000.05.12.00.52.00;	author oreilly;	state Exp;
branches;
next	1.4;

1.4
date	2000.04.03.22.39.30;	author oreilly;	state Exp;
branches;
next	1.3;

1.3
date	2000.03.21.21.58.49;	author oreilly;	state Exp;
branches;
next	1.2;

1.2
date	99.12.27.19.51.18;	author oreilly;	state Exp;
branches;
next	1.1;

1.1
date	99.12.13.23.55.18;	author pean;	state Exp;
branches;
next	;


desc
@@


1.14
log
@changed makedepend rule
@
text
@##########################################################################
# Copyright 1999 MBARI                                             
##########################################################################
# Summary  : Makefile for MBARI Tailcone Driver
# Filename : Makefile
# Author   : Andrew Pearce
# Project  : 
# Version  : Version 1.0
# Created  : 12/06/99
# Modified : 12/06/99
# Archived :
##########################################################################
# Modification History:
# $Header: /usr/local/cvs/auv/altex/onboard/mbariTailcone/Makefile,v 1.13 2001/06/02 21:33:44 hthomas 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.. \
	      -I../utils \
	      -I../Simulator \
	      -I../framework \
	      -I../DataLog \
	      -I../taskIF \
	      -I/usr/include           

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

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

OBJS	    = 	TailConeDriver.o \
		TailConeInput.o \
		TailConeLog.o \
		TailConeOutput.o \
		TailConeServer.o \
		stp100.o \
		sv203.o

TARGETS = tailConeServer tailConeDriver tailConeTest 

# For now, just make object files
all: $(OBJS) tailConeDriver tailConeServer tailConeTest

parseTest:   parseTest.o  $(OBJS) $(LIBS) Makefile
	$(LD) $(LDFLAGS) parseTest.o $(OBJS) \
	$(LIBS) -o parseTest

tailConeServer:   _tailConeServer.o  $(OBJS) $(LIBS) Makefile
	$(LD) $(LDFLAGS) _tailConeServer.o $(OBJS) \
	$(LIBS) -o $@@

tailConeDriver:   _tailConeDriver.o  $(OBJS) $(LIBS) Makefile
	$(LD) $(LDFLAGS) _tailConeDriver.o $(OBJS) \
	$(LIBS) -o $@@

tailConeTest:   _tailConeTest.o  $(OBJS) $(LIBS) Makefile
	$(LD) $(LDFLAGS) _tailConeTest.o $(OBJS) \
	$(LIBS) -o $@@

commandTest:   commandTest.o  $(OBJS) $(LIBS) Makefile
	$(LD) $(LDFLAGS) commandTest.o $(OBJS) \
	$(LIBS) -o $@@

stopTest:   stopTest.o  $(OBJS) $(LIBS) Makefile
	$(LD) $(LDFLAGS) stopTest.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 $@@.tmp
	    @@mv $@@.tmp $@@ 

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

%.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.* 

update:
	cvs update $(CC_SRCS) $MAKEFILE

commit:
	cvs commit $(CC_SRCS) $MAKEFILE

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









@


1.13
log
@various changes; remove stale entries in root makefile, fixed file naming to allow for serving from windows, and fixed makefiles to avoid file linking/unlinking problem in makedepend when talking through samba to windows boxes
@
text
@d14 1
a14 1
# $Header: /usr/local/cvs/auv/altex/onboard/mbariTailcone/Makefile,v 1.12 2000/11/28 18:05:51 hthomas Exp $
d104 2
a105 1
	    @@$(DEPEND_TOOL) $(INCLUDES) $? -f $@@
d109 2
a110 2
	    @@$(DEPEND_TOOL) $(INCLUDES) $? -f /tmp/$@@
	    cp /tmp/$@@ ./$@@ 
@


1.12
log
@finally checking code from october/november cruise
@
text
@d14 1
a14 1
# $Header: /usr/local/cvs/auv/altex/onboard/mbariTailcone/Makefile,v 1.11 2000/10/26 17:56:58 hthomas Exp $
d108 2
a109 1
	    @@$(DEPEND_TOOL) $(INCLUDES) $? -f $@@ 
@


1.11
log
@fixed manual control
@
text
@d14 1
a14 1
# $Header: /usr/local/cvs/auv/altex/onboard/mbariTailcone/Makefile,v 1.10 2000/10/16 20:19:09 hthomas Exp $
d63 1
a63 1
TARGETS = parseTest tailConeServer tailConeDriver tailConeTest commandTest
@


1.10
log
@changed deadman from long to short and adjusted manual control, taskIF, OdysseyTailCone, and mbariTailcone
@
text
@d14 1
a14 1
# $Header: /usr/local/cvs/auv/altex/onboard/mbariTailcone/Makefile,v 1.9 2000/10/13 23:35:26 hthomas Exp $
d60 2
a61 1
		stp100.o sv203.o
@


1.9
log
@changed Event names for TailConeIF
@
text
@d14 1
a14 1
# $Header: /usr/local/cvs/auv/altex/onboard/mbariTailcone/Makefile,v 1.8 2000/09/19 23:09:54 oreilly Exp $
d62 1
a62 1
TARGETS = parseTest tailConeServer tailConeTest commandTest
@


1.8
log
@*** empty log message ***
@
text
@d14 1
a14 1
# $Header: /usr/local/cvs/auv/altex/onboard/mbariTailcone/Makefile,v 1.7 2000/08/11 17:47:52 oreilly Exp $
d59 2
a60 1
		TailConeServer.o 
d65 1
a65 1
all: $(OBJS)
d73 4
@


1.7
log
@*** empty log message ***
@
text
@d14 1
a14 1
# $Header: /usr/local/cvs/auv/altex/onboard/mbariTailcone/Makefile,v 1.6 2000/05/23 01:01:38 oreilly Exp $
d55 4
a58 1
OBJS	    = 	TailConeLog.o \
d63 2
a64 1
all: $(TARGETS)
@


1.6
log
@added target 'speedTest'
@
text
@d14 1
a14 1
# $Header: /usr/local/cvs/auv/altex/onboard/mbariTailcone/Makefile,v 1.5 2000/05/12 00:52:00 oreilly Exp $
d58 1
a58 1
TARGETS = parseTest tailConeServer tailConeTest
d72 4
@


1.5
log
@Added TailConeLog
@
text
@d14 1
a14 1
# $Header: /usr/local/cvs/auv/altex/onboard/mbariTailcone/Makefile,v 1.4 2000/04/03 22:39:30 oreilly Exp $
d72 4
@


1.4
log
@*** empty log message ***
@
text
@d14 1
a14 1
# $Header: /usr/local/cvs/auv/altex/onboard/mbariTailcone/Makefile,v 1.3 2000/03/21 21:58:49 oreilly Exp $
d43 1
d50 2
a51 1
LIBS        =   ../utils/utils.lib \
d55 2
a56 1
OBJS	    = 	TailConeServer.o 
@


1.3
log
@*** empty log message ***
@
text
@d14 1
a14 1
# $Header: /usr/local/cvs/auv/altex/onboard/mbariTailcone/Makefile,v 1.2 1999/12/27 19:51:18 oreilly Exp $
d23 1
d50 2
a51 1
		../framework/auvFramework.lib
d53 1
a53 6
OBJS	    = 	TailCone.o \
		TailConeServer.o \
		TailconeCommands.o \
		TailconeDriver.o \
		TailconeServer.o \
		TailconeStatus.o
d55 1
d57 17
a73 1
all:		$(OBJS)
@


1.2
log
@*** empty log message ***
@
text
@d14 1
a14 1
# $Header: /usr/local/cvs/auv/altex/onboard/mbariTailcone/Makefile,v 1.1 1999/12/13 23:55:18 pean Exp $
d22 1
a22 1
DEPEND_TOOL = /usr/altex/bin/makedepend
@


1.1
log
@Moved files to mbariTailcone subdirectory
@
text
@d14 1
a14 1
# $Header: /usr/local/cvs/auv/altex/onboard/kvhCompass/Makefile,v 1.1 1999/12/08 16:56:23 pean Exp $
d91 1
a91 1
	rm -f core $(OBJS) $(OBJS:.o=.d) *.lib *.yy *.tab.* 
@
