head	1.11;
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.3
	Ver2-1:1.3
	Ver1-11:1.3
	Ver1-10:1.3
	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.11
date	2000.08.20.18.43.39;	author rob;	state Exp;
branches;
next	1.10;

1.10
date	2000.08.20.18.16.00;	author rob;	state Exp;
branches;
next	1.9;

1.9
date	2000.08.19.00.51.34;	author rob;	state Exp;
branches;
next	1.8;

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

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

1.6
date	2000.08.16.04.01.30;	author rob;	state Exp;
branches;
next	1.5;

1.5
date	2000.08.16.00.29.10;	author rob;	state Exp;
branches;
next	1.4;

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

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

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

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


desc
@@


1.11
log
@Added logging librarys to the Makefile, so that now the PS8000Log
stuff compiles and links properly.  Uncommented the log object in PS8000.cc
@
text
@##########################################################################
# Copyright 1999 MBARI                                             
##########################################################################
# Summary  : Makefile for LBL 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/LBL/Makefile,v 1.10 2000/08/20 18:16:00 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.. \
	      -I../utils \
	      -I../DataLog \
	      -I../framework \
	      -I../taskIF \
	      -I/usr/include           

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

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

TARGETS =	lblServer \
		ps8000 \
		lblTest \
		scheduler \
		schedulerTest

OBJS	    =	LblServer.o \
		LblDriverOutput.o \
		PS8000.o \
		LblLog.o \
		ScheduleServer.o \
		PS8000Log.o

all:		$(TARGETS)

lblServer:	_lblServer.o $(OBJS) $(LIBS)
	$(LD) $(LDFLAGS) _lblServer.o $(OBJS) $(LIBS) -o $@@

ps8000:		_ps8000.o $(OBJS) $(LIBS)
	$(LD) $(LDFLAGS) _ps8000.o $(OBJS) $(LIBS) -o $@@

lblTest:	_lblTest.o $(OBJS) $(LIBS)
	$(LD) $(LDFLAGS) _lblTest.o $(OBJS) $(LIBS) -o $@@

schedulerTest:	_schedulerTest.o $(OBJS) $(LIBS)
	$(LD) $(LDFLAGS) _schedulerTest.o $(OBJS) $(LIBS) -o $@@

scheduler:	_scheduler.o $(OBJS) $(LIBS)
	$(LD) $(LDFLAGS) _scheduler.o $(OBJS) $(LIBS) -o $@@

install:	$(TARGETS)
		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.* 

update:
	cvs update $(CC_SRCS) $MAKEFILE

commit:
	cvs commit $(CC_SRCS) $MAKEFILE

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









@


1.10
log
@PS8000Log.o added, but commented out.
@
text
@d14 1
a14 1
# $Header: /usr/local/cvs/auv/altex/onboard/LBL/Makefile,v 1.9 2000/08/19 00:51:34 rob Exp $
d52 1
d65 2
a66 2
		ScheduleServer.o 
#		PS8000Log.o
@


1.9
log
@Added scheduler and schedulerTest targets.
@
text
@d14 1
a14 1
# $Header: /usr/local/cvs/auv/altex/onboard/LBL/Makefile,v 1.8 2000/08/17 17:42:30 rob Exp $
d42 1
d65 1
@


1.8
log
@Added $(TARGETS) to the "install" so that it will make if necessary.
@
text
@d14 1
a14 1
# $Header: /usr/local/cvs/auv/altex/onboard/LBL/Makefile,v 1.7 2000/08/16 04:25:28 rob Exp $
d55 3
a57 1
		lblTest
d62 2
a63 1
		LblLog.o
d75 6
@


1.7
log
@Added AUV_BIN_DIR.
@
text
@d14 1
a14 1
# $Header: /usr/local/cvs/auv/altex/onboard/LBL/Makefile,v 1.6 2000/08/16 04:01:30 rob Exp $
d73 1
a73 1
install:
@


1.6
log
@Added "install" target.
@
text
@d14 1
a14 1
# $Header: /usr/local/cvs/auv/altex/onboard/LBL/Makefile,v 1.5 2000/08/16 00:29:10 rob Exp $
d23 2
@


1.5
log
@Added TARGETS lblServer, ps8000 and lblTest.
@
text
@d14 1
a14 1
# $Header: /usr/local/cvs/auv/altex/onboard/LBL/Makefile,v 1.4 2000/07/17 18:03:48 oreilly Exp $
d71 2
@


1.4
log
@*** empty log message ***
@
text
@d14 1
a14 1
# $Header: /usr/local/cvs/auv/altex/onboard/LBL/Makefile,v 1.3 2000/03/21 21:57:29 oreilly Exp $
d48 1
d51 3
d55 4
a58 1
OBJS	    =	LblServer.o LblDriverOutput.o PS8000.o 
d60 11
a70 1
all:		$(OBJS)
@


1.3
log
@*** empty log message ***
@
text
@d14 1
a14 1
# $Header: /usr/local/cvs/auv/altex/onboard/LBL/Makefile,v 1.2 1999/12/27 19:48:07 oreilly Exp $
d51 1
a51 1
OBJS	    =	LblServer.o
@


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


1.1
log
@Moved files to LBL 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 $
d85 1
a85 1
	rm -f core $(OBJS) $(OBJS:.o=.d) *.lib *.yy *.tab.* 
@
