head	1.2;
access;
symbols
	Hobson_Rock_14Dec2009:1.2
	BEFORE_VCS_CHANGE:1.2
	Hobson_Rock_16Oct2009:1.2
	Hobson_Rock_29June2009:1.2
	Jun15_2009:1.2
	Apr_7_2009:1.2
	mar19_2009:1.2
	mar18_2009:1.2
	feb13_2009:1.2
	feb10-2009:1.2
	feb09-2009:1.2
	dec15_2008:1.2
	dec12_2008:1.2
	ST_10_5:1.2
	ST_10_4b:1.2
	ST_10_4:1.2
	ST_10_3:1.2
	ST10_HW:1.2
	ST_10_2:1.2
	ST_10_1:1.2
	ST_10_0:1.2
	AUTONOMY_BRANCH:1.2.0.2
	AUTONOMY:1.2
	AUTONOMY-2008_07_30:1.2;
locks; strict;
comment	@# @;


1.2
date	2008.07.29.15.32.52;	author fpy;	state Exp;
branches;
next	1.1;

1.1
date	2007.10.09.15.40.32;	author fpy;	state Exp;
branches;
next	;


desc
@@


1.2
log
@added global configuration file for make under autonomy
@
text
@##########################################################################
# Copyright 2002 MBARI                                             
##########################################################################
# Summary  : Makefile for Cluster
# Filename : Makefile
# Author   : Frederic Py
# Project  : 
# Version  : Version 1.0
# Created  : 12/01/2006
# Archived :
##########################################################################
# Modification History:
#
##########################################################################

DMEM = NO

include ../Init.make

INCLUDES    = -I.  \
	      -I$(AUV_HOME)/stlport \
	      -I/usr/include

LDFLAGS	    = -g
LIBPATH	    = 

LIBS        =   

OBJS        = 	dmem.o

TARGETS =	dmem.lib

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)

dmem.lib: $(OBJS)
	$(AR) $@@ +- $(OBJS)

##########################################################################
# Do not modify anything below this line unless absolutely necessary

.SUFFIXES:
.SUFFIXES:	.o .c .cc .d .idl

%.d: %.cc
	    @@echo Generating dependencies for $?
	    @@$(DEPEND_TOOL) $(DBG) $(INCLUDES) $? -f $@@ 

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

DEST	    = .

MAKEFILE    = Makefile

include       $(OBJS:.o=.d)

depend:	

clean:
	rm -f core $(OBJS) $(OBJS:.o=.d) $(TARGETS) *~

update:
	cvs update $(CC_SRCS) $MAKEFILE

commit:
	cvs commit $(CC_SRCS) $MAKEFILE

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









# DO NOT DELETE THIS LINE -- make depend depends on it.
@


1.1
log
@added cluster task
@
text
@d33 14
@

