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


1.8
date	2001.08.18.04.22.50;	author henthorn;	state Exp;
branches;
next	1.7;

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

1.6
date	2001.08.16.20.14.23;	author henthorn;	state Exp;
branches;
next	1.5;

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

1.4
date	2001.06.21.20.33.35;	author henthorn;	state Exp;
branches;
next	1.3;

1.3
date	2001.06.20.18.54.22;	author henthorn;	state Exp;
branches;
next	1.2;

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

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


desc
@@


1.8
log
@Remove buoyLauncherTestIA target.
@
text
@##########################################################################
# Copyright 1999 MBARI                                             
##########################################################################
# Summary  : Makefile for Buoy Launcher 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/BuoyLauncher/Makefile,v 1.7 2001/08/16 20:34:19 rob Exp $
#
##########################################################################

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

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/usr/include           

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

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

TARGETS	    =	buoyLauncherServer buoyLauncherDriver \
		buoyLauncherTest

OBJS	    =	BuoyLauncherOutput.o \
		BuoyLauncherInput.o \
		BuoyLauncherDriver.o \
		BuoyLauncherLog.o \
		LcXmodem.o \
		BuoyLauncherServer.o 

all:		$(OBJS) buoyLauncherServer buoyLauncherDriver buoyLauncherTest 

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

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

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

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

##########################################################################
# 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 $(OBJS) $(OBJS:.o=.d) *.lib *.yy *.tab.* $(TARGETS)

update:
	cvs update $(CC_SRCS) $MAKEFILE

commit:
	cvs commit $(CC_SRCS) $MAKEFILE

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









@


1.7
log
@Removed BuoyLauncherIA target.
@
text
@d14 1
a14 1
# $Header: /usr/local/cvs/auv/altex/onboard/BuoyLauncher/Makefile,v 1.6 2001/08/16 20:14:23 henthorn Exp $
d55 1
a55 1
		buoyLauncherTest buoyLauncherTestIA
@


1.6
log
@Updated changes for improved LC comms.
@
text
@d14 1
a14 1
# $Header: /usr/local/cvs/auv/altex/onboard/BuoyLauncher/Makefile,v 1.5 2001/06/24 20:35:59 hthomas Exp $
d64 1
a64 2
all:		$(OBJS) buoyLauncherServer buoyLauncherDriver buoyLauncherTest \
		buoyLauncherTestIA
a75 4
	$(LIBS) -o $@@

buoyLauncherTestIA:   _buoyLauncherTestIA.o  $(OBJS) $(LIBS) Makefile
	$(LD) $(LDFLAGS) _buoyLauncherTestIA.o $(OBJS) \
@


1.5
log
@fixed various things to make buoy launching work
@
text
@d14 1
a14 1
# $Header: /usr/local/cvs/auv/altex/onboard/BuoyLauncher/Makefile,v 1.4 2001/06/21 20:33:35 henthorn Exp $
d50 1
d54 2
a55 1
TARGETS	    =	buoyLauncherServer buoyLauncherDriver buoyLauncherTest
d60 1
d64 2
a65 1
all:		$(OBJS) buoyLauncherServer buoyLauncherDriver buoyLauncherTest
d79 4
d116 1
a116 1
	rm -f core $(OBJS) $(OBJS:.o=.d) *.lib *.yy *.tab.* 
@


1.4
log
@Added LcXmodem.
@
text
@d14 1
a14 1
# $Header: /usr/local/cvs/auv/altex/onboard/BuoyLauncher/Makefile,v 1.2 2000/03/21 21:57:27 oreilly Exp $
d53 1
a53 1
TARGETS	    =	bouyLauncherServer buoyLauncherDriver
d75 2
@


1.3
log
@Add new modules.
@
text
@d58 1
@


1.2
log
@*** empty log message ***
@
text
@d14 1
a14 1
# $Header: /usr/local/cvs/auv/altex/onboard/BuoyLauncher/Makefile,v 1.1 1999/12/14 00:10:42 pean Exp $
d38 1
a38 1
	      -I.. \
d41 1
d43 1
d50 2
a51 1
		../framework/auvFramework.lib
d53 1
a53 1
OBJS	    =	BuoyLauncherServer.o
d55 19
a73 1
all:		$(OBJS)
@


1.1
log
@Moved files to BuoyLauncher 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 $
d22 1
a22 1
DEPEND_TOOL = /usr/altex/bin/makedepend
@
