head	1.4;
access;
symbols
	Validate1:1.4
	OdysseyMatch2:1.2;
locks; strict;
comment	@# @;


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

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

1.2
date	99.12.13.21.50.02;	author pean;	state Exp;
branches;
next	1.1;

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


desc
@@


1.4
log
@added StreamSerialDriver
@
text
@##########################################################################
# Copyright 1999 MBARI                                             
##########################################################################
# Summary  : Makefile for framework subdirectory
# 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/framework/Makefile,v 1.3 1999/12/27 19:51:17 oreilly Exp $
#
##########################################################################

CC	    = cc
CCPP	    = cc
LD	    = cc
AR 	    = wlib
DEPEND_TOOL = /usr/altex/bin/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/usr/include           


LDFLAGS	    = -g
LIBPATH	    = 

LIBS        = 

OBJS        =	DeviceInterface.o \
		EventService.o \
		EventTriggers.o \
		ExternalMessage.o \
		PeriodicTask.o \
		Semaphore.o \
		SerialDevice.o \
		SerialDeviceTest.o \
		SharedData.o \
		SharedObject.o \
		SharedObjectClient.o \
		SharedObjectServer.o \
		StreamSerialDriver.o \
		Task.o \
		TaskInterface.o \
		TaskServer.o 

all:		auvFramework.lib

auvFramework.lib: $(OBJS)
	$(AR) -n auvFramework.lib $(OBJS)

##########################################################################
# 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.3
log
@*** empty log message ***
@
text
@d14 1
a14 1
# $Header: /usr/local/cvs/auv/altex/onboard/framework/Makefile,v 1.2 1999/12/13 21:50:02 pean Exp $
d62 1
@


1.2
log
@Moved files into framework subdirectory.
@
text
@d14 1
a14 1
# $Header: /usr/local/cvs/auv/altex/onboard/framework/Makefile,v 1.1 1999/12/08 17:02:40 pean Exp $
d100 1
a100 1
	rm -f core $(OBJS) $(OBJS:.o=.d) *.lib *.yy *.tab.* 
@


1.1
log
@Added automatic dependency generation to makefile. Moved all auv framework
sources into framework subdirectory.
@
text
@d14 1
a14 1
# $Header: /usr/local/cvs/auv/altex/onboard/utils/Makefile,v 1.1 1999/12/07 23:03:05 pean Exp $
d38 1
d44 1
d57 1
@
