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


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

1.1
date	99.12.16.17.02.29;	author amarsh;	state Exp;
branches;
next	;


desc
@@


1.2
log
@*** empty log message ***
@
text
@##########################################################################
# Copyright 1999 MBARI                                             
##########################################################################
# Summary  : Makefile for Paroscientific depth sensor
# 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/watchdog/Makefile,v 1.1 1999/12/16 17:02:29 amarsh 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../utils \
	      	-I../framework  \
		-I../taskIF \
		-I..


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

LIBS        =   ../utils/utils.lib \
		../framework/auvFramework.lib \
		../taskIF/taskInterfaces.lib \
		../libAuv.lib


OBJS	=	Watchdog.o \
		WatchdogServer.o \
		WatchdogOutput.o \
		WatchdogLog.o

all:		watchdogServer \
		watchdog \
		watchdogTest

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

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

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

##########################################################################
# 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 $@@	

%.o: %.cc
	    $(CCPP) $(CPPFLAGS) $(INCLUDES) $< -o $@@

DEST	    = .

MAKEFILE    = Makefile

include       $(OBJS:.o=.d)

depend:	

clean:
	rm -f core *.o $(OBJS:.o=.d) *.yy *.tab.* 

update:
	cvs update $(CC_SRCS) $MAKEFILE

commit:
	cvs commit $(CC_SRCS) $MAKEFILE

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









@


1.1
log
@Added new files for the watchdog
@
text
@d14 1
a14 1
# $Header: /usr/local/cvs/auv/altex/onboard/parosci/Makefile,v 1.2 1999/12/10 01:11:59 amarsh Exp $
d97 1
a97 1
	rm -f core $(OBJS) $(OBJS:.o=.d) *.yy *.tab.* 
@
