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


1.12
date	2001.09.11.20.44.24;	author hthomas;	state dead;
branches;
next	1.11;

1.11
date	2000.01.18.03.03.53;	author amarsh;	state Exp;
branches;
next	1.10;

1.10
date	2000.01.07.20.19.30;	author jrieffel;	state Exp;
branches;
next	1.9;

1.9
date	2000.01.07.18.13.55;	author oreilly;	state Exp;
branches;
next	1.8;

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

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

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

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

1.4
date	99.12.15.22.49.10;	author pean;	state Exp;
branches;
next	1.3;

1.3
date	99.12.15.00.14.26;	author pean;	state Exp;
branches;
next	1.2;

1.2
date	99.12.14.18.01.03;	author jrieffel;	state Exp;
branches;
next	1.1;

1.1
date	99.12.10.22.02.14;	author jrieffel;	state Exp;
branches;
next	;


desc
@@


1.12
log
@cleaning up repository
@
text
@##########################################################################
# Copyright 1999 MBARI                                             
##########################################################################
# Summary  : Makefile for CTD 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/ctd.old/Makefile,v 1.11 2000/01/18 03:03:53 amarsh Exp $
#
##########################################################################

CC	    = cc
CCPP	    = cc
LD	    = cc
AR 	    = wlib
DEPEND_TOOL = /usr/altex/bin/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	    =	CTDServer.o \
		CTDOutput.o \
		CTD.o \
		CTDLog.o

TARGETS =	ctdServer \
		ctdDriver \
		ctdTest		

all:		$(TARGETS)


ctdServer:	ctdServer.o $(OBJS) $(LIBS)

ctdTest:	ctdTest.o $(OBJS) $(LIBS)

ctdDriver:	ctdDriver.o $(OBJS) $(LIBS)

install:
		cp -f ctdDriver		$(AUV_BIN_DIR)/. 
		cp -f ctdServer 	$(AUV_BIN_DIR)/. 
		cp -f ctdTest		$(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.11
log
@Modified makefiles to also delete executables and libraries
@
text
@d14 1
a14 1
# $Header: /usr/local/cvs/auv/altex/onboard/ctd/Makefile,v 1.10 2000/01/07 20:19:30 jrieffel Exp $
@


1.10
log
@did periodic task -> streaming conversion & tested
@
text
@d14 1
a14 1
# $Header: /usr/local/cvs/auv/altex/onboard/ctd/Makefile,v 1.9 2000/01/07 18:13:55 oreilly Exp $
d62 1
a62 1
all:		ctdServer \
d66 2
d110 1
a110 1
	rm -f core *.o $(OBJS:.o=.d) *.lib *.yy *.tab.* 
@


1.9
log
@*** empty log message ***
@
text
@d14 1
a14 1
# $Header: /usr/local/cvs/auv/altex/onboard/ctd/Makefile,v 1.8 2000/01/07 18:07:53 oreilly Exp $
d59 2
a60 2
		CtdLog.o \
		Ctd.o
@


1.8
log
@*** empty log message ***
@
text
@d14 1
a14 1
# $Header: /usr/local/cvs/auv/altex/onboard/ctd/Makefile,v 1.7 2000/01/06 18:17:57 oreilly Exp $
d63 1
a63 1
		ctd \
@


1.7
log
@*** empty log message ***
@
text
@d14 1
a14 1
# $Header: /usr/local/cvs/auv/altex/onboard/ctd/Makefile,v 1.6 2000/01/06 18:17:04 oreilly Exp $
a65 1
ctd:		ctd.o $(OBJS) $(LIBS)
@


1.6
log
@added ctdDriver, Ctd
@
text
@d14 1
a14 1
# $Header: /usr/local/cvs/auv/altex/onboard/ctd/Makefile,v 1.5 1999/12/27 19:51:16 oreilly Exp $
d57 1
a57 2
OBJS	    =	CTD.o \
		CTDServer.o \
a58 1
		CTDLog.o \
@


1.5
log
@*** empty log message ***
@
text
@d14 1
a14 1
# $Header: /usr/local/cvs/auv/altex/onboard/ctd/Makefile,v 1.4 1999/12/15 22:49:10 pean Exp $
d60 3
a62 1
		CTDLog.o
d74 2
d77 1
a77 1
		cp -f ctd 		$(AUV_BIN_DIR)/. 
@


1.4
log
@Added make install
@
text
@d14 1
a14 1
# $Header: /usr/local/cvs/auv/altex/onboard/ctd/Makefile,v 1.3 1999/12/15 00:14:26 pean Exp $
d107 1
a107 1
	rm -f core $(OBJS) $(OBJS:.o=.d) *.lib *.yy *.tab.* 
@


1.3
log
@Removed liknes to make CTDIF.o and CTDIF_SK.o which were moved to taskIF
@
text
@d14 1
a14 1
# $Header: /usr/local/cvs/auv/altex/onboard/ctd/Makefile,v 1.2 1999/12/14 18:01:03 jrieffel Exp $
d24 2
d72 4
@


1.2
log
@*** empty log message ***
@
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 $
d43 2
@


1.1
log
@*** empty log message ***
@
text
@d4 1
a4 1
# Summary  : Makefile for KVH Compass Driver
d14 1
a14 1
# $Header: /usr/local/cvs/auv/altex/onboard/psa916/Makefile,v 1.2 1999/12/09 00:15:16 jrieffel Exp $
d38 1
d40 4
a43 3
	      -I../framework  \
	      -I/usr/include  \
	      -I..           
d45 2
a46 2
LDFLAGS	    = -g -lm
LIBPATH	    = /usr/lib:../lib:..
d48 4
a51 2
LIBS        =   ../utils/Syslog.o \
		../libAuv.lib
a53 1
		CTDIF_SK.o \
a55 1
		CTDIF.o \
d68 1
d85 1
a85 1

d88 1
d99 1
a99 1
	rm -f core $(OBJS) $(OBJS:.o=.d) *.yy *.tab.* 
a116 1
# DO NOT DELETE THIS LINE -- make depend depends on it.
@
