head	1.4;
access;
symbols
	Hobson_Rock_14Dec2009:1.4
	HEAD_CTD_MERGE:1.3.0.4
	BEFORE_VCS_CHANGE:1.4
	Hobson_Rock_16Oct2009:1.4
	Hobson_Rock_29June2009:1.4
	Jun15_2009:1.4
	Apr_7_2009:1.4
	mar19_2009:1.4
	mar18_2009:1.4
	feb13_2009:1.4
	feb10-2009:1.4
	feb09-2009:1.4
	dec15_2008:1.4
	dec12_2008:1.4
	ST_10_5:1.4
	ST_10_4b:1.4
	ST_10_4:1.4
	ST_10_3:1.4
	ST10_HW:1.4
	ST_10_2:1.4
	ST_10_1:1.4
	ST_10_0:1.4
	AUTONOMY_BRANCH:1.4.0.2
	AUTONOMY:1.4
	AUTONOMY-2008_07_30:1.4
	TREX_ST_1_0:1.3
	RELEASE_27_April_2007_CTD_1:1.3.0.2
	Development_With_Wayne_060804:1.3
	Dev-27Jan2004:1.3
	Rel-15Dec2003:1.3
	Dev-2Dec2003:1.3
	Dev-1Dec2003:1.3
	Rel-26Nov2003:1.3
	OctansJune5:1.3
	Ver3-0:1.3
	Ver2-4:1.3
	Ver2-3-2:1.3
	Ver2-3:1.3
	Ver2-2:1.3
	Ver2-1:1.3
	Ver1-11:1.3
	Ver1-10:1.3
	Ver1-9:1.1
	Ver1-8:1.1;
locks; strict;
comment	@# @;


1.4
date	2008.07.29.15.32.52;	author fpy;	state Exp;
branches;
next	1.3;

1.3
date	2000.04.07.18.10.41;	author rob;	state Exp;
branches;
next	1.2;

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

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


desc
@@


1.4
log
@added global configuration file for make under autonomy
@
text
@##########################################################################
# Copyright (c) 2000 MBARI                                              
# MBARI Proprietary Information. All rights reserved.                   
##########################################################################
# Summary  : Makefile for apps subdirectory
# Filename : Makefile
# Author   : Andrew Pearce
# Project  : 
# Version  : Version 1.0
# Created  : 12/06/99
# Modified : 12/06/99
# Archived :
##########################################################################
# Modification History:
# $Header: /home/cvs/auv-qnx/auv/altex/onboard/apps/Makefile,v 1.3 2000/04/07 18:10:41 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 =

AUV_BIN_DIR = ../bin

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../taskIF \
	      -I../framework \
	      -I/usr/include           


LDFLAGS	    = -g

LIBPATH	    = 

LIBS        = 	../utils/utils.lib

OBJS 	    =	

TARGETS =	killauv

ifeq ($(AUTONOMY), 1)
# Specific configuration for AUTONOMY group
# this allow to alter the value of the different variables
# used by make when AUTONOMY variable has been set to 1
# on the calling shell  
-include ../autonomy.make # this file contains the general
                       # modifications we want to apply to
                       # all the modules 

# following line are more specific to this file 

# end of AUTONOMY specific
endif 

all:		$(TARGETS)

killauv:   	killauv.o $(LIBS)
		$(LD) $(LDFLAGS) killauv.o $(LIBS) -o killauv

install:
		cp -f killauv	$(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.3
log
@Added mission colon.
@
text
@d15 1
a15 1
# $Header: /usr/local/cvs/auv/altex/onboard/apps/Makefile,v 1.2 2000/03/21 21:58:46 oreilly Exp $
d57 14
@


1.2
log
@*** empty log message ***
@
text
@d15 1
a15 1
# $Header: /usr/local/cvs/auv/altex/onboard/apps/Makefile,v 1.1 2000/02/15 19:38:10 pean Exp $
d90 1
a90 1
include     $(OBJS:.o=.d)
@


1.1
log
@Moved killauv.cc to apps directory from utils directory
@
text
@d15 1
a15 1
# $Header: /usr/local/cvs/auv/altex/onboard/utils/Makefile,v 1.13 2000/02/03 23:45:43 pean Exp $
d23 1
a23 1
DEPEND_TOOL = /usr/altex/bin/makedepend
@
